1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

Fixes mail-copy function.

This commit is contained in:
Cameron
2014-11-23 20:02:10 -08:00
parent 44c222a8ff
commit 005db35df9

View File

@@ -527,9 +527,17 @@ class mailout_main_ui extends e_admin_ui
} }
function afterCopy($result,$id) function afterCopy($firstInsert, $copied)
{ {
if($result == true) $num = array();
$count = 0;
foreach($copied as $tmp)
{
$num[] = ($firstInsert + $count);
$count ++;
}
if(!empty($firstInsert))
{ {
$update = array( $update = array(
'mail_content_status' => MAIL_STATUS_TEMP, 'mail_content_status' => MAIL_STATUS_TEMP,
@@ -541,14 +549,15 @@ class mailout_main_ui extends e_admin_ui
'mail_start_send' => '', 'mail_start_send' => '',
'mail_end_send' => '', 'mail_end_send' => '',
'mail_create_date' => time(), 'mail_create_date' => time(),
'WHERE' => "mail_source_id IN (".implode(",",$id).")" // FIXME Currently modifies the original instead of the copy. 'WHERE' => "mail_source_id IN (".implode(",",$num).")" // FIXME Currently modifies the original instead of the copy.
); );
if(!e107::getDb()->update('mail_content',$update)) if(!e107::getDb()->update('mail_content',$update))
{ {
e107::getMessage()->addError(print_a($update,true)); e107::getMessage()->addDebug(print_a($update,true));
} }
} }
} }