You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2009/05/07 04:59:25 UTC

svn commit: r772490 - /portals/jetspeed-2/portal/trunk/components/jetspeed-portal/src/main/java/org/apache/jetspeed/administration/PortalAdministrationImpl.java

Author: taylor
Date: Thu May  7 02:59:24 2009
New Revision: 772490

URL: http://svn.apache.org/viewvc?rev=772490&view=rev
Log:
passwords were not saving, mustve been missed in port to new security

Modified:
    portals/jetspeed-2/portal/trunk/components/jetspeed-portal/src/main/java/org/apache/jetspeed/administration/PortalAdministrationImpl.java

Modified: portals/jetspeed-2/portal/trunk/components/jetspeed-portal/src/main/java/org/apache/jetspeed/administration/PortalAdministrationImpl.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/components/jetspeed-portal/src/main/java/org/apache/jetspeed/administration/PortalAdministrationImpl.java?rev=772490&r1=772489&r2=772490&view=diff
==============================================================================
--- portals/jetspeed-2/portal/trunk/components/jetspeed-portal/src/main/java/org/apache/jetspeed/administration/PortalAdministrationImpl.java (original)
+++ portals/jetspeed-2/portal/trunk/components/jetspeed-portal/src/main/java/org/apache/jetspeed/administration/PortalAdministrationImpl.java Thu May  7 02:59:24 2009
@@ -178,6 +178,7 @@
             User user =  userManager.addUser(userName);
             PasswordCredential pwc = userManager.getPasswordCredential(user);
             pwc.setPassword(null, password);
+            userManager.storePasswordCredential(pwc);
                        
             // assign roles to user
             if (roles == null || roles.isEmpty())



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org