From 40b7b14fb7e3adadfac9c4892af75c8cc3982bad Mon Sep 17 00:00:00 2001 From: monolit Date: Fri, 20 Apr 2007 13:06:22 +0000 Subject: [PATCH] explode queries by any whitespaces, not only spaces --- lib/Doctrine/Query.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index 8beb40ad8..dddabfdd9 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -1278,11 +1278,18 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { */ public static function sqlExplode($str, $d = ' ', $e1 = '(', $e2 = ')') { + if ($d == ' ') { + $d = array(' ', '\s'); + } if(is_array($d)) { + if (in_array(' ', $d)) { + $d[] = '\s'; + } $str = preg_split('/('.implode('|', $d).')/', $str); $d = stripslashes($d[0]); - } else + } else { $str = explode("$d",$str); + } $i = 0; $term = array();