[Jifty-commit] r4679 - jifty/trunk/lib/Jifty/Plugin/Authentication/CAS/Action

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Thu Dec 13 16:51:08 EST 2007


Author: yves
Date: Thu Dec 13 16:51:07 2007
New Revision: 4679

Modified:
   jifty/trunk/lib/Jifty/Plugin/Authentication/CAS/Action/CASLogin.pm

Log:
add missing continuation in CAS login plugin


Modified: jifty/trunk/lib/Jifty/Plugin/Authentication/CAS/Action/CASLogin.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/Authentication/CAS/Action/CASLogin.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/Authentication/CAS/Action/CASLogin.pm	Thu Dec 13 16:51:07 2007
@@ -70,6 +70,9 @@
 #    	$ENV{HTTP_HOST}.'/caslogin';
     
     my $service_url = Jifty->web->url.'/caslogin';
+    if ( Jifty->web->request->continuation ) {
+        $service_url .= '?J:C='.Jifty->web->request->continuation_id;
+    };
 
     if (! $ticket) {
         my $login_url = $plugin->CAS->login_url( $service_url );


More information about the Jifty-commit mailing list