diff options
author | plegall <plg@piwigo.org> | 2005-03-16 20:57:54 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-03-16 20:57:54 +0000 |
commit | 333d44c398e31dd7f24efbcf50d53c1ce2a754ba (patch) | |
tree | 8cebea4d976e57dc9fbc52e0d0fd4cf7fba9fe39 /include/page_tail.php | |
parent | 06dbb3790190144202df48f6f6265810b8d0f63d (diff) |
- 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
Diffstat (limited to 'include/page_tail.php')
-rw-r--r-- | include/page_tail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/page_tail.php b/include/page_tail.php index 910516dcc..5e4a977e6 100644 --- a/include/page_tail.php +++ b/include/page_tail.php @@ -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'], |