Summary | maintenance url encoded twice |
Queue | Horde Framework Packages |
Queue Version | FRAMEWORK_3 |
Type | Bug |
State | Duplicate |
Priority | 2. Medium |
Owners | slusarz (at) horde (dot) org |
Requester | reitsma (at) denison (dot) edu |
Created | 11/03/2006 (6840 days ago) |
Due | |
Updated | 11/06/2006 (6837 days ago) |
Assigned | 11/04/2006 (6839 days ago) |
Resolved | 11/05/2006 (6838 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
fixed. Thanks.
State ⇒ Duplicate
Bug 4602.Assigned to Michael Slusarz
State ⇒ Feedback
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ maintenance url encoded twice
Queue ⇒ Horde Framework Packages
State ⇒ Unconfirmed
the "Mail Maintenance Operations - Confirmation" page displays
& between variables. The result is never being able to leave
the confirmation page. Refreshing the page is one workaround.
* $Horde: horde/services/maintenance.php,v 1.39 2006/03/13 06:13:43
slusarz Exp $
Decoding before encoding fixes the problem:
[root@mailtest services]# diff maintenance.php.061103 maintenance.php
81c81
< $template->set('maint_url',
htmlspecialchars($maint->getMaintenanceFormURL()));
---
htmlspecialchars(html_entity_decode(($maint->getMaintenanceFormURL()))));