diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index c4dddb4..c954a3a 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -309,7 +309,8 @@ class PHPFSPOT { // +1 for for smarty's selection iteration $rows++; - //$images.= "<img src=\"phpfspot_img.php?idx=". $photo ."&width=". $this->cfg->thumb_width ."\" /><br />\n"; + if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '') + $this->tmpl->assign('searchfor', $_SESSION['searchfor']); $this->tmpl->assign('count', $count); $this->tmpl->assign('width', $this->cfg->thumb_width); |