mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Fix SQL for apps that did not send at least a tid in the filter.
This commit is contained in:
parent
10d92835c1
commit
1d97b2b433
@ -376,7 +376,7 @@
|
|||||||
$fwhere = ' WHERE '; $fand = ' AND ';
|
$fwhere = ' WHERE '; $fand = ' AND ';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$filtermethod = "WHERE (tid='n' OR tid is null)";
|
$filtermethod = " AND (tid='n' OR tid is null)";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$filtermethod) {
|
if (!$filtermethod) {
|
||||||
|
Loading…
Reference in New Issue
Block a user