diff options
author | rub <rub@piwigo.org> | 2008-01-30 22:16:01 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-01-30 22:16:01 +0000 |
commit | 7bb12f4f481639547b7aabd38eb044eb1f942c66 (patch) | |
tree | 5e175322389e678094ea0cae3a12c07e062d0a79 /admin/group_list.php | |
parent | 49b663ecec19a8b12f4986c2c2e8f193e2802366 (diff) |
Replace old use of $lang by l10n function.
Merge BSF 2200:2201 into branch-1_7
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2202 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/group_list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index c5bd7ac70..2d8bbfbee 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -87,7 +87,7 @@ if (isset($_POST['submit_add']) and !is_adviser()) { if (empty($_POST['groupname'])) { - array_push($page['errors'], $lang['group_add_error1']); + array_push($page['errors'], l10n('group_add_error1')); } if (count($page['errors']) == 0) { @@ -100,7 +100,7 @@ SELECT COUNT(*) list($count) = mysql_fetch_row(pwg_query($query)); if ($count != 0) { - array_push($page['errors'], $lang['group_add_error2']); + array_push($page['errors'], l10n('group_add_error2')); } } if (count($page['errors']) == 0) |