Trying to fix cat_id setting if cat = 0 or ''

This commit is contained in:
Miles Lott 2001-07-12 02:42:26 +00:00
parent 5d4eb501d5
commit 5e6c6bae46

View File

@ -61,7 +61,7 @@
if(!empty($sort)) { $this->sort = $sort; }
if(!empty($order)) { $this->order = $order; }
if(!empty($filter)) { $this->filter = $filter; }
if(!empty($fcat_id)) { $this->cat_id = $fcat_id; }
if(isset($fcat_id)) { $this->cat_id = $fcat_id; }
}
function save_sessiondata()