diff options
author | Sean Murphy <sgmurphy@gmail.com> | 2009-02-05 14:11:50 -0500 |
---|---|---|
committer | Sean Murphy <sgmurphy@gmail.com> | 2009-02-05 14:11:50 -0500 |
commit | 746a5d75071a2a7c913c522ea78f2b88b87f4ce2 (patch) | |
tree | 8ee46b606953752793fa8e446f763a5e982ead28 /actions | |
parent | 4ced74dc9105884fc05d4ab48e8d0162204f8c6a (diff) |
Fixed #905: Presenting image size limit to user.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/avatarsettings.php | 2 | ||||
-rw-r--r-- | actions/grouplogo.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index 643c0e567..79ca6b789 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -75,7 +75,7 @@ class AvatarsettingsAction extends AccountSettingsAction function getInstructions() { - return _('You can upload your personal avatar.'); + return _('You can upload your personal avatar. The maximum file size is '.ImageFile::maxFileSize().'.'); } /** diff --git a/actions/grouplogo.php b/actions/grouplogo.php index 294005f1b..4be7c4e12 100644 --- a/actions/grouplogo.php +++ b/actions/grouplogo.php @@ -152,7 +152,7 @@ class GrouplogoAction extends Action function getInstructions() { - return _('You can upload a logo image for your group.'); + return _('You can upload a logo image for your group. The maximum file size is '.ImageFile::maxFileSize().'.'); } /** |