diff options
author | mistic100 <mistic@piwigo.org> | 2013-10-19 17:43:04 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-10-19 17:43:04 +0000 |
commit | ae707279a1945e383c312cd648d288606a79e341 (patch) | |
tree | 917bdc6e0609ed0eefed5f3693de3a017685acc4 /admin/group_list.php | |
parent | 35ff1b7c1f933799397a0ce0a6723cf82f416ff3 (diff) |
remove all array_push (50% slower than []) + some changes missing for feature:2978
git-svn-id: http://piwigo.org/svn/trunk@25018 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/group_list.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index 77049b9fa..6232c5b00 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -45,7 +45,7 @@ if (isset($_POST['submit_add'])) { if (empty($_POST['groupname'])) { - array_push($page['errors'], l10n('The name of a group must not contain " or \' or be empty.')); + $page['errors'][] = l10n('The name of a group must not contain " or \' or be empty.'); } if (count($page['errors']) == 0) { @@ -58,7 +58,7 @@ SELECT COUNT(*) list($count) = pwg_db_fetch_row(pwg_query($query)); if ($count != 0) { - array_push($page['errors'], l10n('This name is already used by another group.')); + $page['errors'][] = l10n('This name is already used by another group.'); } } if (count($page['errors']) == 0) @@ -86,7 +86,7 @@ if (isset($_POST['submit']) and isset($_POST['selectAction']) and isset($_POST[' $groups = $_POST['group_selection']; if (count($groups) == 0) { - array_push($page['errors'], l10n('Select at least one group')); + $page['errors'][] = l10n('Select at least one group'); } $action = $_POST['selectAction']; @@ -169,7 +169,7 @@ SELECT COUNT(*) list($count) = pwg_db_fetch_row(pwg_query($query)); if ($count != 0) { - array_push($page['errors'], l10n('This name is already used by another group.')); + $page['errors'][] = l10n('This name is already used by another group.'); } else { @@ -255,7 +255,7 @@ SELECT COUNT(*) list($count) = pwg_db_fetch_row(pwg_query($query)); if ($count != 0) { - array_push($page['errors'], l10n('This name is already used by another group.')); + $page['errors'][] = l10n('This name is already used by another group.'); break; } // creating the group |