- new configuration parameter show_version : should the version be displayed
or not ? git-svn-id: http://piwigo.org/svn/trunk@754 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
06dbb37901
commit
333d44c398
2 changed files with 5 additions and 1 deletions
include
|
@ -191,4 +191,8 @@ $conf['tn_width'] = 128;
|
|||
|
||||
// tn_height : default height for thumbnails creation
|
||||
$conf['tn_height'] = 96;
|
||||
|
||||
// show_version : shall the version of PhpWebGallery be displayed at the
|
||||
// bottom of each page ?
|
||||
$conf['show_version'] = true;
|
||||
?>
|
||||
|
|
|
@ -28,7 +28,7 @@ $template->set_filenames(array('tail'=>'footer.tpl'));
|
|||
|
||||
$template->assign_vars(
|
||||
array(
|
||||
'VERSION' => PHPWG_VERSION,
|
||||
'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '',
|
||||
'MAIL'=>$conf['mail_webmaster'],
|
||||
|
||||
'L_GEN_TIME' => $lang['generation_time'],
|
||||
|
|
Loading…
Add table
Reference in a new issue