diff options
Diffstat (limited to 'mod/mail.php')
-rw-r--r-- | mod/mail.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/mail.php b/mod/mail.php index d6d802fe7..f4897149a 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -72,7 +72,10 @@ function mail_post(&$a) { if(! ($their_perms & PERMS_W_MAIL)) { notice( t('Selected channel has private message restrictions. Send failed.')); - return; + // reported issue: let's still save the message and continue. We'll just tell them + // that nothing useful is likely to happen. They might have spent hours on it. + // return; + } } |