From: Andreas Unterkircher Date: Mon, 4 Jun 2007 19:15:18 +0000 (+0000) Subject: use rpc calls for previous/next image X-Git-Tag: phpfspot-1.2~324 X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=a9f2d88bd254779a0c611ee0a9d4c625357efa96;hp=37091420ec57a050d936b616c1f7e03df06fdf26 use rpc calls for previous/next image git-svn-id: file:///var/lib/svn/phpfspot/trunk@11 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- 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 - - } ?>