Changeset 754 for trunk/include


Ignore:
Timestamp:
Mar 16, 2005, 9:57:54 PM (19 years ago)
Author:
plg
Message:
  • new configuration parameter show_version : should the version be displayed or not ?
Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config.inc.php

    r706 r754  
    192192// tn_height : default height for thumbnails creation
    193193$conf['tn_height'] = 96;
     194
     195// show_version : shall the version of PhpWebGallery be displayed at the
     196// bottom of each page ?
     197$conf['show_version'] = true;
    194198?>
  • trunk/include/page_tail.php

    r726 r754  
    2929$template->assign_vars(
    3030  array(
    31     'VERSION' => PHPWG_VERSION,
     31    'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '',
    3232    'MAIL'=>$conf['mail_webmaster'],
    3333   
Note: See TracChangeset for help on using the changeset viewer.