[Actionframework-users] bug in on-return value show-url
Status: Inactive
Brought to you by:
ptoman
From: Mark D. A. <md...@di...> - 2004-03-13 02:38:34
|
FYI somewhere between 0.93.2c and 0.94.2 a bug was introduced which causes this to not work correctly: <action ...> <on-return value="*" assign-to="target_url" show-url="target_url"/> </action> In 0.93.2c, this correctly did a redirect to the value of $target_url, as returned by the action. Now in 0.94.2, it attempts to do a redirect to the literal string "target_url", not to the value of $target_url. This works correctly, which is my current workaround: <action ...> <on-return value="*" show-url="target_url"> <output-variable name="target_url" component="Authenticator" value="getTargetUrl()"/> </on-return> </action> -mda |