Browse Source

removed null handling code in db::query until further confirmation of bug is received.

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

+ 1 - 8
system/db.php

@@ -56,14 +56,7 @@ class DB {
 
 		foreach ($bindings as $key => &$binding)
 		{
-			if (is_null($binding))
-			{
-				$query->bindValue($key + 1, null, \PDO::PARAM_INT);
-			}
-			else
-			{
-				$query->bindParam($key + 1, $binding);
-			}
+			$query->bindParam($key + 1, $binding);
 		}
 
 		$result = $query->execute();