diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-14 15:40:14 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-14 15:40:14 +0200 |
commit | 56689b31ae3746600b12a9c5c9ec1438e704a6e7 (patch) | |
tree | d0d5dcd5baf59cde91f5f025d73b14ef6496b5e7 | |
parent | b28a38c7575dd6068d9e1b7f95e391e214a52a78 (diff) |
Fix inactive Save search option after advanced search (#1488607)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/steps/addressbook/search.inc | 7 |
2 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix inactive Save search option after advanced search (#1488607) - Fix Remove from group option is active for contact search result (#1488608) - Disable autocapitalization in login form on iPad/iPhone (#1488609) - Fix focus on the list when list row is clicked (#1488600) diff --git a/program/steps/addressbook/search.inc b/program/steps/addressbook/search.inc index d31e54b1a..851325070 100644 --- a/program/steps/addressbook/search.inc +++ b/program/steps/addressbook/search.inc @@ -237,9 +237,12 @@ function rcmail_contact_search() $OUTPUT->command('set_env', 'source', ''); $OUTPUT->command('set_env', 'group', ''); - // unselect currently selected directory/group - if (!$sid) + if (!$sid) { + // unselect currently selected directory/group $OUTPUT->command('unselect_directory'); + // enable "Save search" command + $OUTPUT->command('enable_command', 'search-create', true); + } $OUTPUT->command('update_group_commands'); // send response |