[Jifty-commit] r3304 - jifty/trunk/lib/Jifty/Plugin/OpenID/Action

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sun May 27 07:17:15 EDT 2007


Author: gugod
Date: Sun May 27 07:17:13 2007
New Revision: 3304

Modified:
   jifty/trunk/lib/Jifty/Plugin/OpenID/Action/CreateOpenIDUser.pm

Log:
Should just call username there. instead of user_object->name.  As
described in the CurrentUser POD.


Modified: jifty/trunk/lib/Jifty/Plugin/OpenID/Action/CreateOpenIDUser.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/OpenID/Action/CreateOpenIDUser.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/OpenID/Action/CreateOpenIDUser.pm	Sun May 27 07:17:13 2007
@@ -95,7 +95,7 @@
 sub report_success {
     my $self = shift;
     # Your success message here
-    $self->result->message( _("Welcome, ") . Jifty->web->current_user->user_object->name . "." );
+    $self->result->message( _("Welcome, ") . Jifty->web->current_user->username . "." );
 }
 
 1;


More information about the Jifty-commit mailing list