Summary | SyncML "return to options" button broken |
Queue | Horde Base |
Queue Version | 3.2-RC2 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | jan (at) horde (dot) org |
Requester | liamr (at) umich (dot) edu |
Created | 02/26/2008 (6420 days ago) |
Due | |
Updated | 02/27/2008 (6419 days ago) |
Assigned | |
Resolved | 02/27/2008 (6419 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Jan Schneider
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ SyncML "return to options" button broken
Queue ⇒ Horde Base
"Return to Options" button doesn't actually work (it doesn't return to
the options screen when it's selected) The HTML source says...
<input type="button" class="button" value="Return to Options"
onclick="document.prefs.actionID.value=0;
document.prefs.group.value=''; document.prefs.submit();" />
When it works, I see HTMl that follows two different forms..
if the pref is handled by services/prefs.php...
<input type="button" id="prefs_return" class="button" value="Return
to Options" onclick="document.prefs.actionID.value=0;
document.prefs.group.value=''; document.prefs.submit();" /> </p>
if the pref is handled by services/portal/blah.php... (like the
"Remote Servers" option)
<input type="button" class="button"
onclick="cancelSubmit=true;document.location.href='https://mail.example.com/horde/services/prefs.php?app=horde'" value="Return to Options"
/>