diff options
author | friendica <info@friendica.com> | 2011-12-05 00:35:44 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-05 00:35:44 -0800 |
commit | 116e20c89dc5874912c7e3870623c747f75238ce (patch) | |
tree | 9724295ca3b6e4b21f6fdf1c296022d90fc6a70c /mod | |
parent | 7d721892c3c8f032ac52baf8ee316a63ebc827b4 (diff) | |
download | volse-hubzilla-116e20c89dc5874912c7e3870623c747f75238ce.tar.gz volse-hubzilla-116e20c89dc5874912c7e3870623c747f75238ce.tar.bz2 volse-hubzilla-116e20c89dc5874912c7e3870623c747f75238ce.zip |
add conv structure
Diffstat (limited to 'mod')
-rw-r--r-- | mod/message.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/message.php b/mod/message.php index 60e6b38fc..172a1ca98 100644 --- a/mod/message.php +++ b/mod/message.php @@ -27,6 +27,10 @@ function message_post(&$a) { break; case -3: notice( t('Message could not be sent.') . EOL ); + break; + case -4: + notice( t('Message collection failure.') . EOL ); + break; default: info( t('Message sent.') . EOL ); } |