mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fixed small bug related to email sending
git-svn-id: file:///svn/phpbb/trunk@5077 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
0a1b040588
commit
c8b0cdc0e8
1 changed files with 6 additions and 2 deletions
|
@ -75,7 +75,11 @@ class ucp_remind extends module
|
|||
);
|
||||
|
||||
$messenger->send($row['user_notify_type']);
|
||||
$messenger->queue->save();
|
||||
if ($messenger->queue)
|
||||
{
|
||||
$messenger->queue->save();
|
||||
}
|
||||
|
||||
|
||||
meta_refresh(3, "index.$phpEx$SID");
|
||||
|
||||
|
@ -96,4 +100,4 @@ class ucp_remind extends module
|
|||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue