Browse Source

Fix bug when using raw_where with eloquent

Han Lin Yap 13 years ago
parent
commit
4a52aabd15
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/database/grammars/grammar.php

+ 2 - 2
laravel/database/grammars/grammar.php

@@ -217,12 +217,12 @@ class Grammar {
 	/**
 	 * Compile a raw WHERE clause.
 	 *
-	 * @param  string  $where
+	 * @param  array   $where
 	 * @return string
 	 */
 	protected function where_raw($where)
 	{
-		return $where;
+		return $where['sql'];
 	}
 
 	/**