aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/include/functions.php')
-rw-r--r--admin/include/functions.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php
index f9435b1f1..a7402080e 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -1569,7 +1569,7 @@ SELECT MAX(rank)
$insert = array(
'name' => $category_name,
'rank' => ++$current_rank,
- 'commentable' => $conf['newcat_default_commentable'],
+ 'commentable' => boolean_to_string($conf['newcat_default_commentable']),
'uploadable' => 'false',
);
@@ -1594,7 +1594,7 @@ SELECT id, uppercats, global_rank, visible, status
}
else
{
- $insert{'visible'} = $conf['newcat_default_visible'];
+ $insert{'visible'} = boolean_to_string($conf['newcat_default_visible']);
}
// at creation, must a category be public or private ? Warning : if the
@@ -1606,13 +1606,13 @@ SELECT id, uppercats, global_rank, visible, status
}
else
{
- $insert{'status'} = $conf['newcat_default_status'];
+ $insert{'status'} = boolean_to_string($conf['newcat_default_status']);
}
}
else
{
- $insert{'visible'} = $conf['newcat_default_visible'];
- $insert{'status'} = $conf['newcat_default_status'];
+ $insert{'visible'} = boolean_to_string($conf['newcat_default_visible']);
+ $insert{'status'} = boolean_to_string($conf['newcat_default_status']);
$insert{'global_rank'} = $insert{'rank'};
}