From 4f37f4b764068ec0e3269f19c740d494286ae37e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 28 May 2008 09:48:04 -0400 Subject: [PATCH] remove bogus validation code darcs-hash:20080528134804-84dde-994624cc82941094719670f78212c391127cc9a6.gz --- actions/avatar.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/actions/avatar.php b/actions/avatar.php index 33b5452d0b..81eb23cec0 100644 --- a/actions/avatar.php +++ b/actions/avatar.php @@ -128,17 +128,6 @@ class AvatarAction extends SettingsAction { $avatar->url = common_avatar_url($filename); $avatar->created = DB_DataObject_Cast::dateTime(); # current time - $val = $avatar->validate(); - - if ($val !== TRUE) { - $err = ''; - foreach ($val as $k=>$v) { - $err .= _t('Something wrong with ') . $k; - $this->show_form($err); - return; - } - } - foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) { $scaled[] = $this->scale_avatar($user, $avatar, $size); } -- 2.39.2