aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2006-04-26 21:08:44 +0000
committerplegall <plg@piwigo.org>2006-04-26 21:08:44 +0000
commita52bf8e293c0b55b4d877b154bfd349486897d99 (patch)
treed708a788df1f5c2f6dcbd4ca62e757938d65d5e0 /include
parent79cabc6fd9a9b48e89b28de51f32078d2a75cd30 (diff)
merge -r1276:1277 from branch-1_6 to trunk (bug 228 fixed)
git-svn-id: http://piwigo.org/svn/trunk@1278 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-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 0a5a8e551..ec432f210 100644
--- a/include/config_default.inc.php
+++ b/include/config_default.inc.php
@@ -110,16 +110,16 @@ $conf['calendar_month_cell_height']=80;
// newcat_default_commentable : at creation, must a category be commentable
// or not ?
-$conf['newcat_default_commentable'] = 'true';
+$conf['newcat_default_commentable'] = true;
// newcat_default_uploadable : at creation, must a category be uploadable or
// not ?
-$conf['newcat_default_uploadable'] = 'false';
+$conf['newcat_default_uploadable'] = false;
// newcat_default_visible : at creation, must a category be visible or not ?
// Warning : if the parent category is invisible, the category is
// automatically create invisible. (invisible = locked)
-$conf['newcat_default_visible'] = 'true';
+$conf['newcat_default_visible'] = true;
// newcat_default_status : at creation, must a category be public or private
// ? Warning : if the parent category is private, the category is
@@ -127,7 +127,7 @@ $conf['newcat_default_visible'] = 'true';
$conf['newcat_default_status'] = 'public';
// newuser_default_enabled_high : at creation, must a user with enabled_high or not
-$conf['newuser_default_enabled_high'] = 'true';
+$conf['newuser_default_enabled_high'] = true;
// level_separator : character string used for separating a category level
// to the sub level. Suggestions : ' / ', ' &raquo; ', ' &rarr; ', ' - ',