fixed bug reported by Lutz on the german list (missing AND before filter in return_array)

This commit is contained in:
Ralf Becker 2005-11-08 05:07:37 +00:00
parent ffd9fec8c8
commit a0beab57d4

View File

@ -148,7 +148,7 @@
$global_cats = " OR cat_appname='phpgw'";
}
$filter = $this->filter($type);
$filter = ' AND ' . $this->filter($type);
if (!$sort) $sort = 'ASC';