EnglishThis modification permits to return to the thumbnails page (as the button on the left of the slideshow button) when we click on the large picture.
################################################################
## MOD Title: Shortcut to thumbnails page from large picture
## MOD Author: CVince
## MOD Description: Click on picture return to thumbnails page
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 2 Minutes
## Files To Edit: picture.tpl
## Files To Create:
## System requirements : None
################################################################
## MOD History:
##
## 2005-04-21 - Version 1.0.0
## - Successfully tested with PhpWebGallery 1.4.0, PHP 4.3.8
##
################################################################
## Before Adding This MOD To Your gallery, You Should Back Up
## All Files Related To This MOD.
################################################################
#
#-----[ OPEN AND UPDATE ALL YOUR TEMPLATES ]------------------------------------------
#
./template/ALL YOUR TEMPLATE NAME/picture.tpl
#
#-----[ BEFORE ]------------------------------------------
#
<img class="image" src="{SRC_IMG}" style="width:{WIDTH_IMG}px;height:{HEIGHT_IMG}px;" alt="{ALT_IMG}"/>
#
#-----[ ADD ]------------------------------------------
#
<a href="{U_UP}" title="{ALT_IMG}">
#
#-----[ AFTER ]------------------------------------------
#
<img class="image" src="{SRC_IMG}" style="width:{WIDTH_IMG}px;height:{HEIGHT_IMG}px;" alt="{ALT_IMG}"/>
#
#-----[ ADD ]------------------------------------------
#
</a>
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoMBye,
CVince.