aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2007-05-04 22:30:41 +0000
committerplegall <plg@piwigo.org>2007-05-04 22:30:41 +0000
commit23eee870a293715435f2746a59c864f30485dcdb (patch)
treea37c73f6f817f7124446b51d1848720c5d28c737
parent920d16abcbd4d2ec1bae14fe9fa5130aef0016f6 (diff)
stable release required modifications: don't show version and generation
time in footer, don't check the upgrade feed, don't die on sql errors. git-svn-id: http://piwigo.org/svn/tags/release-1_7_0@2001 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--include/config_default.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php
index cc949f7b2..70add8c8e 100644
--- a/include/config_default.inc.php
+++ b/include/config_default.inc.php
@@ -153,7 +153,7 @@ $conf['tn_height'] = 128;
// show_version : shall the version of PhpWebGallery be displayed at the
// bottom of each page ?
-$conf['show_version'] = true;
+$conf['show_version'] = false;
// links : list of external links to add in the menu. An example is the best
@@ -284,7 +284,7 @@ $conf['default_email_format'] = 'text/html';
//
// This configuration parameter is set to true in BSF branch and to false
// elsewhere.
-$conf['check_upgrade_feed'] = true;
+$conf['check_upgrade_feed'] = false;
// rate_items: available rates for a picture
$conf['rate_items'] = array(0,1,2,3,4,5);
@@ -406,14 +406,14 @@ $conf['session_length'] = 3600;
$conf['show_queries'] = false;
// show_gt : display generation time at the bottom of each page
-$conf['show_gt'] = true;
+$conf['show_gt'] = false;
// debug_l10n : display a warning message each time an unset language key is
// accessed
$conf['debug_l10n'] = false;
// die_on_sql_error: if an SQL query fails, should everything stop?
-$conf['die_on_sql_error'] = true;
+$conf['die_on_sql_error'] = false;
// +-----------------------------------------------------------------------+
// | authentication |