diff options
author | mistic100 <mistic@piwigo.org> | 2013-10-22 12:55:22 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-10-22 12:55:22 +0000 |
commit | 677fe6f8881e43b009c8a2babb0565b6ba1620df (patch) | |
tree | c1d0588fac58f8da6ef3c02dcc93789059ce8405 /admin/site_update.php | |
parent | e8ceb7131db25f667ee0878922b30889bef4112c (diff) |
bug:2981 fix parse error caused by r25018
git-svn-id: http://piwigo.org/svn/trunk@25076 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/site_update.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/admin/site_update.php b/admin/site_update.php index 0168a31b2..a6cf34dc7 100644 --- a/admin/site_update.php +++ b/admin/site_update.php @@ -256,9 +256,8 @@ SELECT id_uppercat, MAX(rank)+1 AS next_rank $inserts[] = $insert; $infos[] = array( 'path' => $fulldir, - 'info' => l10n('added') - ) - ); + 'info' => l10n('added'), + ); // add the new category to $db_categories and $db_fulldirs array $db_categories[$insert{'id'}] = |