Ooops: wrong use of preg_split.
[banana.git] / banana / nntpcore.inc.php
index 070135b..d1b2f19 100644 (file)
@@ -469,7 +469,7 @@ class BananaNNTPCore
         $array  =& $this->fetchResult();
         $groups = array();
         foreach ($array as &$result) {
-            @list($group, $desc) = preg_split("[ \t]", $result, 2);
+            @list($group, $desc) = preg_split('/[ \t]/', $result, 2);
             $groups[$group] = $desc;
         }
         return $groups;