From 9a4f1e6e36327c3a7e1daa54b2f9c0cadb7a6516 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Tue, 3 Aug 2010 21:54:01 +0200 Subject: [PATCH] DibiFluent: allowed multiple ->from('table') --- dibi/libs/DibiFluent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dibi/libs/DibiFluent.php b/dibi/libs/DibiFluent.php index 93cf880b..4085e311 100644 --- a/dibi/libs/DibiFluent.php +++ b/dibi/libs/DibiFluent.php @@ -60,7 +60,7 @@ class DibiFluent extends DibiObject implements IDataSource /** @var array clauses separators */ public static $separators = array( 'SELECT' => ',', - 'FROM' => FALSE, + 'FROM' => ',', 'WHERE' => 'AND', 'GROUP BY' => ',', 'HAVING' => 'AND',