Re-arrange buttons in import dialog to match the rest of the appplication

pull/172/head
Thomas Bruederli 11 years ago
parent 34ddfcecef
commit 3f63a80730

@ -308,10 +308,11 @@ function rcmail_import_buttons($attrib)
$out = $OUTPUT->button(array('command' => 'list', 'prop' => $target, 'label' => 'done') + $attrib);
}
else {
$out = $OUTPUT->button(array('command' => 'list', 'label' => 'cancel') + $attrib);
$out .= ' ';
$cancel = $OUTPUT->button(array('command' => 'list', 'label' => 'cancel') + $attrib);
$attrib['class'] = trim($attrib['class'] . ' mainaction');
$out .= $OUTPUT->button(array('command' => 'import', 'label' => 'import') + $attrib);
$out = $OUTPUT->button(array('command' => 'import', 'label' => 'import') + $attrib);
$out .= ' ';
$out .= $cancel;
}
return $out;

Loading…
Cancel
Save