CC-4346: Prepared statements - part 2

- fix spelling
This commit is contained in:
James 2012-09-05 17:41:18 -04:00
parent 326ba012c1
commit 4af9bfaa9d
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?php
class Application_Common_Database{
public static function prepareAndExcute($sql, $paramValueMap, $type='all'){
public static function prepareAndExecute($sql, $paramValueMap, $type='all'){
$con = Propel::getConnection();
$stmt = $con->prepare($sql);
foreach ($paramValueMap as $param => $v) {