diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2011-11-30 21:03:29 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-11-30 21:03:29 +0100 |
commit | b790d2e2839850c053b6fecc4f5d767746c47f20 (patch) | |
tree | 7125e0c1b89776cc83c3d9347fb04edc125435f1 /phpBB/includes/ucp/ucp_groups.php | |
parent | 6472a270e0faf39c7dd9b73a8948f19254e0a17e (diff) | |
download | forums-b790d2e2839850c053b6fecc4f5d767746c47f20.tar forums-b790d2e2839850c053b6fecc4f5d767746c47f20.tar.gz forums-b790d2e2839850c053b6fecc4f5d767746c47f20.tar.bz2 forums-b790d2e2839850c053b6fecc4f5d767746c47f20.tar.xz forums-b790d2e2839850c053b6fecc4f5d767746c47f20.zip |
[ticket/10345] Add documentation and phpbb_ prefix to the new avatar functions
PHPBB3-10345
Diffstat (limited to 'phpBB/includes/ucp/ucp_groups.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_groups.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/ucp/ucp_groups.php b/phpBB/includes/ucp/ucp_groups.php index e3e4e8ce22..f2e2e616b7 100644 --- a/phpBB/includes/ucp/ucp_groups.php +++ b/phpBB/includes/ucp/ucp_groups.php @@ -561,7 +561,7 @@ class ucp_groups { if ($data['width'] > $config['avatar_max_width'] || $data['height'] > $config['avatar_max_height']) { - $error[] = avatar_error_wrong_size($data['width'], $data['height']); + $error[] = phpbb_avatar_error_wrong_size($data['width'], $data['height']); } } @@ -571,7 +571,7 @@ class ucp_groups { if ($data['width'] < $config['avatar_min_width'] || $data['height'] < $config['avatar_min_height']) { - $error[] = avatar_error_wrong_size($data['width'], $data['height']); + $error[] = phpbb_avatar_error_wrong_size($data['width'], $data['height']); } } } @@ -732,7 +732,7 @@ class ucp_groups 'U_SWATCH' => append_sid("{$phpbb_root_path}adm/swatch.$phpEx", 'form=ucp&name=group_colour'), 'S_UCP_ACTION' => $this->u_action . "&action=$action&g=$group_id", - 'L_AVATAR_EXPLAIN' => avatar_explanation_string(), + 'L_AVATAR_EXPLAIN' => phpbb_avatar_explanation_string(), )); break; |