diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-05-23 11:58:39 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-05-23 11:58:39 +0200 |
commit | ba600e17df7511e64159132c298120a52a1befb2 (patch) | |
tree | 18bad2f2c7f624e0a01f42622d635f97be35c665 /phpfspot.class.php | |
parent | b690db6fe75d323ff4f30e2be0a447a75e140cb5 (diff) |
further renaming of showImage() to showPhoto()
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 54308aa..1d20ab1 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -649,12 +649,12 @@ class PHPFSPOT { $this->tmpl->assign('current_img', $photo); if($previous_img) { - $this->tmpl->assign('previous_url', "javascript:showImage(". $previous_img .");"); + $this->tmpl->assign('previous_url', "javascript:showPhoto(". $previous_img .");"); $this->tmpl->assign('prev_img', $previous_img); } if($next_img) { - $this->tmpl->assign('next_url', "javascript:showImage(". $next_img .");"); + $this->tmpl->assign('next_url', "javascript:showPhoto(". $next_img .");"); $this->tmpl->assign('next_img', $next_img); } $this->tmpl->assign('mini_width', $this->cfg->mini_width); |