| Summary | problem.php return_url not passed |
| Queue | Horde Base |
| Queue Version | HEAD |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | jan (at) horde (dot) org |
| Requester | hordebugs (at) biuro (dot) net (dot) pl |
| Created | 08/12/2004 (7800 days ago) |
| Due | |
| Updated | 08/12/2004 (7800 days ago) |
| Assigned | 08/12/2004 (7800 days ago) |
| Resolved | 08/12/2004 (7800 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Resolved
State ⇒ Assigned
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ problem.php return_url not passed
Queue ⇒ Horde Base
is loosing the return_url value it gets passed from the reporting
application, and thus does not know where to redirect the user when
the problem submission is complete - the user is redirected to the
main horde portal page (the default). quick-and-dirty fix:
--- horde/templates/problem/problem.inc.orig 2004-08-12
11:31:28.000000000 +0200
+++ horde/templates/problem/problem.inc 2004-08-12 13:02:12.000000000 +0200
@@ -22,6 +22,7 @@
<!--a75c305b1c0a6022--><form method="post" name="problem_report"
action="problem.php">
<?php Util::pformInput() ?>
<input type="hidden" name="actionID" value="cancel_problem_report" />
+<?php $return_url=Util::getFormData('return_url'); ?>
<?php if (isset($return_url)): ?><input type="hidden"
name="return_url" value="<?php echo htmlspecialchars($return_url) ?>"
/><?php endif; ?>
<table border="0" cellpadding="3" cellspacing="2" width="100%">