Summary | Back to browsing that bookmark's folder |
Queue | Trean |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | jan (at) horde (dot) org |
Requester | pehrle (at) ac-reims (dot) fr |
Created | 01/29/2007 (6807 days ago) |
Due | 01/29/2007 (6807 days ago) |
Updated | 01/30/2007 (6806 days ago) |
Assigned | 01/29/2007 (6807 days ago) |
Resolved | 01/30/2007 (6806 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Jan Schneider
Taken from Chuck Hagenbuch
State ⇒ Resolved
At line 48
I need to force ",true" at the call of the function applicationUrl in
the 1.2 Revision
header('Location: ' . Horde::applicationUrl('browse.php?f=' .
$bookmark->folder,true));
My install is like
URL : https://servername/horde3
HORDE : cat /usr/share/horde3/lib/Horde.php
...
function applicationUrl($uri, $full = false, $append_session = 0)
{
global $re
...
Taken from ben
State ⇒ Feedback
Assigned to ben
Assigned to Chuck Hagenbuch
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Back to browsing that bookmark's folder
Due ⇒ 01/29/2007
Queue ⇒ Trean
New Attachment: bookmark.php.patch
State ⇒ Unconfirmed
when i change the rating of a bookmark record, the code :
// Back to browsing that bookmark's folder, unless we were sent a
// next-URL (nu) parameter.
if (!is_null($url = Util::getFormData('nu'))) {
header('Location: ' . $nu);
} else {
header('Location: ' . Horde::applicationUrl('browse.php?f=' .
$bookmark->folder));
}
put the rigtht frame to the horde login page ! ( header('Location:
' . $nu); condition is always matched)
I try to put the code
header('Location: ' . Horde::applicationUrl($url, true));
from edit.php and it works fine.
Thanks,