[freeside-commits] branch FREESIDE_4_BRANCH updated. 0a0adf0a83c648898311ea32552c2a7fede0a56f

Ivan Kohler ivan at freeside.biz
Wed Jan 24 15:23:22 PST 2018


The branch, FREESIDE_4_BRANCH has been updated
       via  0a0adf0a83c648898311ea32552c2a7fede0a56f (commit)
      from  c18996f883da55202a7dce4661dec1a3f19103d1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0a0adf0a83c648898311ea32552c2a7fede0a56f
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Jan 24 15:23:21 2018 -0800

    fix initial employee add w/password, RT#32456

diff --git a/httemplate/edit/process/access_user.html b/httemplate/edit/process/access_user.html
index 54d2b0348..f3024f1ba 100644
--- a/httemplate/edit/process/access_user.html
+++ b/httemplate/edit/process/access_user.html
@@ -43,8 +43,9 @@ sub post_new_object_callback {
 
   if ( length($cgi->param('_password')) ) {
     my $password = scalar($cgi->param('_password'));
-    my $error = $access_user->is_password_allowed($password)
-             || $access_user->change_password($password);
+    #my $error = $access_user->is_password_allowed($password)
+    #         || $access_user->change_password($password);
+    $access_user->change_password($password);
   }
 
 }

-----------------------------------------------------------------------

Summary of changes:
 httemplate/edit/process/access_user.html | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)




More information about the freeside-commits mailing list