summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index d040f13..1dd3b93 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -37,17 +37,16 @@ class PHPFSPOT {
public function show()
{
-
if(isset($this->current_photo)) {
$this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $this->avail_photos[$this->current_photo] ."&width=". $this->cfg->photo_width);
}
if($this->current_photo > 0) {
- $this->tmpl->assign('previous_url', $_SERVER['PHP_SELF'] ."?mode=showphoto&id=". $this->avail_photos[$this->current_photo-1]);
+ $this->tmpl->assign('previous_url', "javascript:showImage(". ($this->current_photo-1) .");");
}
if($this->current_photo < count($this->avail_photos)) {
- $this->tmpl->assign('next_url', $_SERVER['PHP_SELF'] ."?mode=showphoto&amp;id=". $this->avail_photos[$this->current_photo+1]);
+ $this->tmpl->assign('next_url', "javascript:showImage(". ($this->current_photo+1) .");");
}
$this->tmpl->assign('tags', $this->tags);
@@ -120,8 +119,6 @@ class PHPFSPOT {
} // translate_path
-
-
}
?>