diff options
Diffstat (limited to 'admin/permalinks.php')
-rw-r--r-- | admin/permalinks.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/admin/permalinks.php b/admin/permalinks.php index f673e3659..72f951322 100644 --- a/admin/permalinks.php +++ b/admin/permalinks.php @@ -2,7 +2,7 @@ // +-----------------------------------------------------------------------+ // | Piwigo - a PHP based photo gallery | // +-----------------------------------------------------------------------+ -// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org | +// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // +-----------------------------------------------------------------------+ @@ -59,13 +59,13 @@ function parse_sort_variables( } elseif (isset($default_field) and !isset($_GET[$get_param]) ) { - array_push($ret, $field); + $ret[] = $field; $disp = '<em>'.$disp.'</em>'; } } else { - array_push($ret, $field); + $ret[] = $field; $disp = '<em>'.$disp.'</em>'; } if ( isset($template_var) ) @@ -100,7 +100,9 @@ DELETE FROM '.OLD_PERMALINKS_TABLE.' LIMIT 1'; $result = pwg_query($query); if (pwg_db_changes($result)==0) - array_push($page['errors'], l10n('Cannot delete the old permalink !')); + { + $page['errors'][] = l10n('Cannot delete the old permalink !'); + } } |