Browse Source

cast bindings to array.

Taylor Otwell 13 years ago
parent
commit
087f50a52c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      laravel/database/connection.php

+ 2 - 0
laravel/database/connection.php

@@ -196,6 +196,8 @@ class Connection {
 	 */
 	 */
 	protected function execute($sql, $bindings = array())
 	protected function execute($sql, $bindings = array())
 	{
 	{
+		$bindings = (array) $bindings;
+
 		// Since expressions are injected into the query as strings, we need to
 		// Since expressions are injected into the query as strings, we need to
 		// remove them from the array of bindings. After we have removed them,
 		// remove them from the array of bindings. After we have removed them,
 		// we'll reset the array so there aren't gaps in the keys.
 		// we'll reset the array so there aren't gaps in the keys.