From cb2bc809ef29f349d38c89e202d821e67bb4c947 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Tue, 21 Sep 2010 14:47:55 -0400 Subject: [PATCH] Fix db_mode check in insert_id() --- program/steps/mail/attachments.inc | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/program/steps/mail/attachments.inc b/program/steps/mail/attachments.inc index 2b4a590..797c30c 100644 --- a/program/steps/mail/attachments.inc +++ b/program/steps/mail/attachments.inc @@ -32,7 +32,7 @@ if (preg_match('/^rcmfile(\w+)$/', $_POST['_file'], $regs)) $id = $regs[1]; if ($attachment = $_SESSION['compose']['attachments'][$id]) - $attachment = $RCMAIL->plugins->exec_hook('remove_attachment', $attachment); + $attachment = $RCMAIL->plugins->exec_hook('attachment_delete', $attachment); if ($attachment['status']) { if (is_array($_SESSION['compose']['attachments'][$id])) { unset($_SESSION['compose']['attachments'][$id]); @@ -50,7 +50,7 @@ if (preg_match('/^rcmfile(\w+)$/', $_GET['_file'], $regs)) $id = $regs[1]; if ($attachment = $_SESSION['compose']['attachments'][$id]) - $attachment = $RCMAIL->plugins->exec_hook('display_attachment', $attachment); + $attachment = $RCMAIL->plugins->exec_hook('attachment_display', $attachment); if ($attachment['status']) { if (empty($attachment['size'])) @@ -87,7 +87,7 @@ 'mimetype' => rc_mime_content_type($filepath, $_FILES['_attachments']['name'][$i], $_FILES['_attachments']['type'][$i]) ); - $attachment = $RCMAIL->plugins->exec_hook('upload_attachment', $attachment); + $attachment = $RCMAIL->plugins->exec_hook('attachment_upload', $attachment); if ($attachment['status'] && !$attachment['abort']) { $id = $attachment['id']; @@ -152,4 +152,3 @@ $OUTPUT->command('auto_save_start', false); $OUTPUT->send('iframe'); -?> -- Gitblit v1.9.1