diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 2e491c5..1c1e864 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -751,6 +751,15 @@ class PHPFSPOT { if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '') $this->tmpl->assign('searchfor', $_SESSION['searchfor']); + if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) { + $this->tmpl->assign('from_date', $_SESSION['from_date']); + $this->tmpl->assign('to_date', $_SESSION['to_date']); + } + + if(isset($_SESSION['selected_tags']) && !empty($_SESSION['selected_tags'])) { + $this->tmpl->assign('tag_result', 1); + } + /* do we have to display the page selector ? */ if($this->cfg->rows_per_page != 0) { |