Here’s the “view source” code as it appears in the parsed template. You can see that the ACT & XID values are properly populated (Yay!). And I’ve tried many different formats in the RET and FROM fields. As described above, I’ve tried full URLS, and short URL segments (“members/index”). I also tried with and without the description tagged on to the end like this (“http://www.mysite.com/index.php/members/index/|MEMBERS AREA”). No joy, I’m afraid. So to answer you more directly… yes, the RET field is in my code. It’s just not performing the way it should. Everything else works fine though.
<table cellpadding="0" cellspacing="5">
<form method="post" action="http://www.mysite.com/index.php/members/index/">
<input type="hidden" name="XID" value="fa6bad5b268f94c47814eb06f5fe75cbb3709273" >
<input type="hidden" name="ACT" value="7" >
<input type="hidden" name="RET" value="http://www.mysite.com/index.php/members/index/" >
<input type="hidden" name="FROM" value="http://www.mysite.com/index.php/members/index/" >
<tr>
<td><input name="username" type="text" size="30" value="Select a Username…" onclick="this.value = (this.value=='Select a Username…')? '' : this.value;" style="color:#0000FF; font-style:oblique; font-family:Arial,Helvetica,sans-serif; font-weight:bold; font-size:20px; border-width:1px; border-color:#000000; border-style:solid; background-color: #EFEFEF; padding: 2px;"></td>
</tr>
<tr>
<td><input name="email" type="text" size="30" value="Enter Email Address…" onclick="this.value = (this.value=='Enter Email Address…')? '' : this.value;" style="color:#0000FF; font-style:oblique; font-family:Arial,Helvetica,sans-serif; font-weight:bold; font-size:20px; border-width:1px; border-color:#000000; border-style:solid; background-color: #EFEFEF; padding: 2px;"></td>
</tr>
<tr>
<td><input name="password" type="text" size="30" value="Choose a Password…" onclick="this.value = (this.value=='Choose a Password…')? '' : this.value;" style="color:#0000FF; font-style:oblique; font-family:Arial,Helvetica,sans-serif; font-weight:bold; font-size:20px; border-width:1px; border-color:#000000; border-style:solid; background-color: #EFEFEF; padding: 2px;"></td>
</tr>
<tr>
<td><input name="password_confirm" type="text" size="30" value="Confirm Password…" onclick="this.value = (this.value=='Confirm Password…')? '' : this.value;" style="color:#0000FF; font-style:oblique; font-family:Arial,Helvetica,sans-serif; font-weight:bold; font-size:20px; border-width:1px; border-color:#000000; border-style:solid; background-color: #EFEFEF; padding: 2px;"></td>
</tr>
<tr>
<td><input name="submit" type="submit" style="font-style:normal; font-family:Tahoma,Arial,Helvetica,sans-serif; font-weight:bold; font-size:22px;" value="Activate Me!"></td>
</tr>
</form>
</table>
Yeah… I know… ugly tables. But I like ‘em.