diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-05-25 09:11:55 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-05-25 10:02:09 +0200 |
commit | 9ebbaf7dfd6c8c967cb03b92dc944a31f0dee708 (patch) | |
tree | 33c60dcc4e1b7a184f15718b7b3610552a8e8a7f /phpfspot.class.php | |
parent | 9609cbda7f2a5ed1bcd0f3a5540b287a3654f4b9 (diff) |
fix slideshow, web_path was not set correctly
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 3f06a87..9a11069 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -303,7 +303,9 @@ class PHPFSPOT { return; break; case 'slideshow': - $this->tmpl->show("slideshow.tpl"); + /* fetch slideshow template */ + print $this->tmpl->show("slideshow.tpl"); + /* no further execution necessary. */ return; break; case 'rss': |