remove bogus validation code

darcs-hash:20080528134804-84dde-994624cc82941094719670f78212c391127cc9a6.gz
This commit is contained in:
Evan Prodromou 2008-05-28 09:48:04 -04:00
parent 9977591b78
commit 4f37f4b764
1 changed files with 0 additions and 11 deletions

View File

@ -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);
}