|
@@ -506,10 +506,10 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp
|
|
(isset($passed_ent_id)?'&passed_ent_id='.$passed_ent_id:'');
|
|
(isset($passed_ent_id)?'&passed_ent_id='.$passed_ent_id:'');
|
|
|
|
|
|
if (($mailbox == $draft_folder) && ($save_as_draft)) {
|
|
if (($mailbox == $draft_folder) && ($save_as_draft)) {
|
|
- $comp_alt_uri = $comp_uri . '&action=draft';
|
|
|
|
|
|
+ $comp_alt_uri = $comp_uri . '&smaction=draft';
|
|
$comp_alt_string = _("Resume Draft");
|
|
$comp_alt_string = _("Resume Draft");
|
|
} else if (handleAsSent($mailbox)) {
|
|
} else if (handleAsSent($mailbox)) {
|
|
- $comp_alt_uri = $comp_uri . '&action=edit_as_new';
|
|
|
|
|
|
+ $comp_alt_uri = $comp_uri . '&smaction=edit_as_new';
|
|
$comp_alt_string = _("Edit Message as New");
|
|
$comp_alt_string = _("Edit Message as New");
|
|
}
|
|
}
|
|
if (isset($comp_alt_uri)) {
|
|
if (isset($comp_alt_uri)) {
|
|
@@ -581,20 +581,20 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp
|
|
|
|
|
|
$s .= '</small></td>' . "\n" .
|
|
$s .= '</small></td>' . "\n" .
|
|
html_tag( 'td', '', 'right', '', 'width="33%" nowrap' ) . '<small>';
|
|
html_tag( 'td', '', 'right', '', 'width="33%" nowrap' ) . '<small>';
|
|
- $comp_action_uri = $comp_uri . '&action=forward';
|
|
|
|
|
|
+ $comp_action_uri = $comp_uri . '&smaction=forward';
|
|
$s .= makeComposeLink($comp_action_uri, _("Forward"));
|
|
$s .= makeComposeLink($comp_action_uri, _("Forward"));
|
|
|
|
|
|
if ($enable_forward_as_attachment) {
|
|
if ($enable_forward_as_attachment) {
|
|
- $comp_action_uri = $comp_uri . '&action=forward_as_attachment';
|
|
|
|
|
|
+ $comp_action_uri = $comp_uri . '&smaction=forward_as_attachment';
|
|
$s .= $topbar_delimiter;
|
|
$s .= $topbar_delimiter;
|
|
$s .= makeComposeLink($comp_action_uri, _("Forward as Attachment"));
|
|
$s .= makeComposeLink($comp_action_uri, _("Forward as Attachment"));
|
|
}
|
|
}
|
|
|
|
|
|
- $comp_action_uri = $comp_uri . '&action=reply';
|
|
|
|
|
|
+ $comp_action_uri = $comp_uri . '&smaction=reply';
|
|
$s .= $topbar_delimiter;
|
|
$s .= $topbar_delimiter;
|
|
$s .= makeComposeLink($comp_action_uri, _("Reply"));
|
|
$s .= makeComposeLink($comp_action_uri, _("Reply"));
|
|
|
|
|
|
- $comp_action_uri = $comp_uri . '&action=reply_all';
|
|
|
|
|
|
+ $comp_action_uri = $comp_uri . '&smaction=reply_all';
|
|
$s .= $topbar_delimiter;
|
|
$s .= $topbar_delimiter;
|
|
$s .= makeComposeLink($comp_action_uri, _("Reply All"));
|
|
$s .= makeComposeLink($comp_action_uri, _("Reply All"));
|
|
$s .= '</small></td></tr></table>';
|
|
$s .= '</small></td></tr></table>';
|