-John
> --
> You received this message because you are subscribed to the Google
> Groups "Gantry" group.
> To post to this group, send email to gan...@googlegroups.com.
> To unsubscribe from this group, send email to gantry+un...@googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/group/gantry?hl=en
> .
# Encrypt goto
$goto = $gobj->url_encode( $crypt->encrypt( $goto ) );
The ->url_encode method fails out too, although that could have more to
do with the debugging I was doing than an actual failure. I'll try
switching Engine/CGI.pm to return $self->cgi(), and see how that goes.
If it works cleanly, I'll commit that fix.
Tony Shadwick
Can't locate object method "url_encode" via package "MailControl" at
/usr/local/share/perl/5.10.1/Gantry/Plugins/AuthCookie.pm line 223.
I'll keep plugging away at it. If you happen to see anything let me know.
Tony Shadwick
# Encrypt goto
$goto = Gantry::Engine::CGI->url_encode($crypt->encrypt( $goto ));
#$goto = $gobj->url_encode( $crypt->encrypt( $goto ) );
Comment out the line calling it from our $gobj and call it directly, it
works. Call it from the gobj, and suddenly that object method can't be
found. :|
Tony Shadwick