Browse Source

trim sql before executing

Taylor Otwell 13 years ago
parent
commit
1dd6daf7a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/db/connection.php

+ 1 - 1
laravel/db/connection.php

@@ -118,7 +118,7 @@ class Connection {
 
 		$this->queries[] = compact('sql', 'bindings');
 
-		return $this->execute($this->pdo->prepare($sql), $bindings);
+		return $this->execute($this->pdo->prepare(trim($sql)), $bindings);
 	}
 
 	/**