diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/config.inc.php | 2 | ||||
-rw-r--r-- | include/functions.inc.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/config.inc.php b/include/config.inc.php index 08312eccc..1fee9c6ea 100644 --- a/include/config.inc.php +++ b/include/config.inc.php @@ -170,7 +170,7 @@ $conf['newcat_default_commentable'] = 'true'; // newcat_default_uploadable : at creation, must a category be uploadable or // not ? -$conf['newcat_default_uploadable'] = 'true'; +$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 diff --git a/include/functions.inc.php b/include/functions.inc.php index bb3979ae9..999b4f8b8 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -400,7 +400,7 @@ function format_date($date, $type = 'us', $show_time = false) } case 'unix' : { - list($year,$month,$day,$hour,$minute,$second) = + list($year,$month,$day,$hour,$minute) = explode('.', date('Y.n.j.G.i', $date)); break; } |