diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-05-13 19:31:16 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-05-13 19:31:16 +0200 |
commit | 8e14a6b9e1c7d2dfc25e786c425d76acc115f393 (patch) | |
tree | 2bbafb1206e7bfb8ccda8e59a90e833b67fa74f8 /phpfspot.class.php | |
parent | 8a63e413682afe18c55098f7fc165d602288337a (diff) |
issue118, user-friendly-url's to jump from photo-index to single-photo-view
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 0e2ea44..f938dbc 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -223,6 +223,11 @@ class PHPFSPOT { if(isset($_SESSION['begin_with']) && $this->cfg->thumbs_per_page == 0) unset($_SESSION['begin_with']); + // if user-friendly-url's are enabled, set also a flag for the template handler + if($this->is_user_friendly_url()) { + $this->tmpl->assign('user_friendly_url', 'true'); + } + } // __construct() public function __destruct() |