From b690db6fe75d323ff4f30e2be0a447a75e140cb5 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Fri, 23 May 2008 11:17:22 +0200 Subject: [PATCH] in phpfspot we talk about photos not images Signed-off-by: Andreas Unterkircher --- phpfspot.js | 8 ++++---- themes/default/templates/photo_index.tpl | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/phpfspot.js b/phpfspot.js index ae202a0..2aee155 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -21,14 +21,14 @@ ***************************************************************************/ /** - * display image + * show photo * * this function will be called by client and fetches * the single-photo view via AJAX from the server. * Furthermore it will scrollup the browser to the top * position so the image become visibile immediatley. */ -function showImage(id, scrollup) +function showPhoto(id, scrollup) { /* is phpfspot skeleton really displayed? */ if(!document.getElementById('content')) @@ -54,7 +54,7 @@ function showImage(id, scrollup) delete(origWidth); origWidth = undefined; delete(photo_details_pos); photo_details_pos = undefined; -} // showImage() +} // showPhoto() /** * scroll browser to the last shown photo @@ -398,7 +398,7 @@ function init_phpfspot(srv_webpath) } if(whattodo == 'show_photo') { if(photo = getPhotoToShow()) { - showImage(photo); + showPhoto(photo); refreshSelectedTags(); } } diff --git a/themes/default/templates/photo_index.tpl b/themes/default/templates/photo_index.tpl index bc0b9f8..c9da477 100644 --- a/themes/default/templates/photo_index.tpl +++ b/themes/default/templates/photo_index.tpl @@ -70,9 +70,9 @@
{ if $user_friendly_url } - + { else } - + { /if }
-- 2.25.1