- bug fixed on upload : configuration variable $conf['upload_available'] has

disappeared

- by default, new categories are not "uploadable"

- bug fixed on date displayed from Unix format : trying to find seconds
  while not provided

- bug fixed on admin/waiting template to center submit button


git-svn-id: http://piwigo.org/svn/trunk@667 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2004-12-30 08:10:46 +00:00
commit e57538219f
4 changed files with 11 additions and 13 deletions

View file

@ -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

View file

@ -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;
}