diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-05-07 11:44:46 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-05-07 11:44:46 +0000 |
commit | 8678ad0b0b2f83ce91047f06fb73474105a70d7c (patch) | |
tree | b411c06498a36b4e127cc810897c8b3a76e33fe1 /phpBB/includes/functions_user.php | |
parent | 56f4c786a52a15210940d5c7151ae46535456eb9 (diff) | |
download | forums-8678ad0b0b2f83ce91047f06fb73474105a70d7c.tar forums-8678ad0b0b2f83ce91047f06fb73474105a70d7c.tar.gz forums-8678ad0b0b2f83ce91047f06fb73474105a70d7c.tar.bz2 forums-8678ad0b0b2f83ce91047f06fb73474105a70d7c.tar.xz forums-8678ad0b0b2f83ce91047f06fb73474105a70d7c.zip |
Just removing a few extra lines.
git-svn-id: file:///svn/phpbb/trunk@7496 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 921aaf870b..079a2d3e77 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -1778,7 +1778,6 @@ function avatar_get_dimensions($avatar, $avatar_type, &$error, $current_x = 0, $ break; case AVATAR_UPLOAD : - // Make sure getimagesize works... $avatar = $phpbb_root_path . $config['avatar_path'] . '/' . get_avatar_filename($avatar); break; @@ -1814,7 +1813,6 @@ function avatar_get_dimensions($avatar, $avatar_type, &$error, $current_x = 0, $ $image_data[0] = min($config['avatar_max_width'], $image_data[1]); $image_data[0] = max($config['avatar_min_width'], $image_data[1]); } - } return array($image_data[0], $image_data[1]); } |