Skip to content

Commit 925b278

Browse files
authored
Merge pull request #974 from bramley/message_requeued
Call the messageReQueued() method when a campaign is resent
2 parents 1ea33a5 + 2ea4f58 commit 925b278

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

public_html/lists/admin/message.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
}
4949
}
5050
Sql_Query("update $tables[message] set status = \"submitted\" where id = $id");
51+
52+
foreach ($GLOBALS['plugins'] as $pluginname => $plugin) {
53+
$plugin->messageReQueued($id);
54+
}
5155
$_SESSION['action_result'] = s('campaign requeued');
5256
$messagedata = loadMessageData($id);
5357
$finishSending = mktime($messagedata['finishsending']['hour'], $messagedata['finishsending']['minute'], 0,

0 commit comments

Comments
 (0)