| Summary | "Duplicate Search" dialog is broken |
| Queue | Turba |
| Queue Version | 4.2.1 |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | jan (at) horde (dot) org |
| Requester | woe (at) gmx (dot) de |
| Created | 8/29/14 (4231 days ago) |
| Due | |
| Updated | 8/29/14 (4231 days ago) |
| Assigned | |
| Resolved | 8/29/14 (4231 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | 4.2.2 |
| Patch | No |
commit f10d122c105df77dbc48049f03bf37c260bcf9c1
Author: Jan Schneider <jan@horde.org>
Date: Fri Aug 29 12:33:37 2014 +0200
Fix duplicate search form (
Bug #13528).turba/search.php | 3 +--
turba/templates/search/duplicate.html.php | 2 --
2 files changed, 1 insertions(+), 4 deletions(-)
http://github.com/horde/horde/commit/f10d122c105df77dbc48049f03bf37c260bcf9c1
State ⇒ Resolved
Milestone ⇒ 4.2.2
Patch ⇒ No
commit dab53b6b2ae2ad56c48e8a6f7ff5a1b2c7697dde
Author: Jan Schneider <jan@horde.org>
Date: Fri Aug 29 12:33:37 2014 +0200
Fix duplicate search form (
Bug #13528).turba/search.php | 3 +--
turba/templates/search/duplicate.html.php | 2 --
2 files changed, 1 insertions(+), 4 deletions(-)
http://github.com/horde/horde/commit/dab53b6b2ae2ad56c48e8a6f7ff5a1b2c7697dde
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ "Duplicate Search" dialog is broken
Queue ⇒ Turba
Milestone ⇒
Patch ⇒ Yes
State ⇒ Unconfirmed
The search itself works fine, it's only the dialog that can not be
rendered.
The following two changes fix that for me:
# diff -u search.php.org search.php
--- search.php.org 2014-07-22 11:10:33.000000000 +0200
+++ search.php 2014-08-29 11:41:16.197951992 +0200
@@ -260,6 +260,7 @@
case 'duplicate':
$title = _("Duplicate Search");
+ $page_output->addScriptFile('search.js');
break;
}
# diff -u duplicate.html.php.org duplicate.html.php
--- duplicate.html.php.org 2014-03-14 21:47:16.000000000 +0100
+++ duplicate.html.php 2014-08-29 11:40:37.421951951 +0200
@@ -14,4 +14,3 @@
<input type="hidden" name="source" value="<?php echo
key($this->addressBooks) ?>" />
<?php endif; ?>
-</form>
Best regards - Werner Hunger.