diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-11 19:51:21 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-11 19:51:21 +0000 |
commit | 46969d30b2966f33b0529435a5840d5289996799 (patch) | |
tree | fd57c64ef50bd6bb3a686247473b445ad1e9233f /phpfspot.class.php | |
parent | 452d430a01e512eeb1b6d4c0f2caa89522ce748c (diff) |
show different view for tag- & search-results in photo index view
git-svn-id: file:///var/lib/svn/phpfspot/trunk@84 fa6a889d-dae6-447d-9e79-4ba9a3039384
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); |