diff options
author | Zach Copley <zach@status.net> | 2010-03-18 17:20:09 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-18 17:20:09 -0700 |
commit | 1f160bb7bc62d8672a4e600ab73fdddffd188194 (patch) | |
tree | 19f9ff47645e961cba97c9487f8803c9df73ac53 | |
parent | a6c9445f0de1a74ffc81dda12eaba6ee36410716 (diff) | |
parent | 01a1e882afeb78542b02e4643c5d8a2fa50c2206 (diff) |
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
* 'testing' of gitorious.org:statusnet/mainline:
Handle "forgot to upload an avatar on avatarsettings" a little more gracefully.
-rw-r--r-- | actions/avatarsettings.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index 6a7398746..d4ea11cb7 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -301,6 +301,10 @@ class AvatarsettingsAction extends AccountSettingsAction $this->showForm($e->getMessage()); return; } + if ($imagefile === null) { + $this->showForm(_('No file uploaded.')); + return; + } $cur = common_current_user(); |