mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Fix cat_id setting - again
This commit is contained in:
parent
2da7e41cd4
commit
9355b2486c
@ -95,7 +95,9 @@
|
||||
{
|
||||
$this->query = $query;
|
||||
}
|
||||
if(isset($fcat_id) || $fcat_id == '0' || $fcat_id == 0) { $this->cat_id = $fcat_id; }
|
||||
|
||||
if(isset($fcat_id)) { $this->cat_id = $fcat_id; }
|
||||
if($fcat_id == '0' || $fcat_id == 0 || $fcat_id == '') { $this->cat_id = 0; }
|
||||
if(isset($sort)) { $this->sort = $sort; }
|
||||
if(isset($order)) { $this->order = $order; }
|
||||
if(isset($filter)) { $this->filter = $filter; }
|
||||
|
Loading…
Reference in New Issue
Block a user