From a9f2d88bd254779a0c611ee0a9d4c625357efa96 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Mon, 4 Jun 2007 19:15:18 +0000 Subject: use rpc calls for previous/next image git-svn-id: file:///var/lib/svn/phpfspot/trunk@11 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 7 ++----- 1 file 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&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 - - } ?> -- cgit v1.2.3-18-g5258