Browse Source

removed unnecessary binding code.

Taylor Otwell 13 years ago
parent
commit
da1715fb76
1 changed files with 1 additions and 8 deletions
  1. 1 8
      system/db.php

+ 1 - 8
system/db.php

@@ -52,14 +52,7 @@ class DB {
 	{
 		$query = static::connection($connection)->prepare($sql);
 
-		$bindings = array_values($bindings);
-
-		foreach ($bindings as $key => &$binding)
-		{
-			$query->bindParam($key + 1, $binding);
-		}
-
-		$result = $query->execute();
+		$result = $query->execute($bindings);
 
 		if (strpos(strtoupper($sql), 'SELECT') === 0)
 		{