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
|