diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-03-09 15:53:22 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-03-09 16:23:52 +0100 |
commit | 1394025bdf0e85dc0c14bf55b0285023653fc3f6 (patch) | |
tree | 022a9dca5b5a6e58b9b633f7a0a98c8cbc5feeff /program/steps | |
parent | 238c6a0f55daa218c9e6de148164fc85588fd887 (diff) |
Re-arrange buttons in import dialog to match the rest of the appplication
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/addressbook/import.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/program/steps/addressbook/import.inc b/program/steps/addressbook/import.inc index 33e473242..5dee5c06a 100644 --- a/program/steps/addressbook/import.inc +++ b/program/steps/addressbook/import.inc @@ -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; |