[freeside-commits] branch FREESIDE_4_BRANCH updated. 4a7ad57104162ad7f4e19fed3cee762bfcf9bb55

Ivan Kohler ivan at freeside.biz
Wed Jan 24 15:28:39 PST 2018


The branch, FREESIDE_4_BRANCH has been updated
       via  4a7ad57104162ad7f4e19fed3cee762bfcf9bb55 (commit)
      from  0a0adf0a83c648898311ea32552c2a7fede0a56f (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 4a7ad57104162ad7f4e19fed3cee762bfcf9bb55
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Jan 24 15:28:38 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 f3024f1ba..c31890653 100644
--- a/httemplate/edit/process/access_user.html
+++ b/httemplate/edit/process/access_user.html
@@ -38,21 +38,24 @@ sub precheck_callback {
   return '';
 }
 
-sub post_new_object_callback {
+#sub post_new_object_callback {
+#  my( $cgi, $access_user ) = @_;
+#
+#  if ( length($cgi->param('_password')) ) {
+#    my $password = scalar($cgi->param('_password'));
+#    my $error = $access_user->is_password_allowed($password);
+#    #XXX and then bubble the error back up to the UI
+#  }
+#}
+
+sub noerror_callback {
   my( $cgi, $access_user ) = @_;
 
   if ( length($cgi->param('_password')) ) {
     my $password = scalar($cgi->param('_password'));
-    #my $error = $access_user->is_password_allowed($password)
-    #         || $access_user->change_password($password);
     $access_user->change_password($password);
   }
 
-}
-
-sub noerror_callback {
-  my( $cgi, $access_user ) = @_;
-
   #handle installer checkbox
   my @sched_item = $access_user->sched_item;
   my $sched_item = $sched_item[0];

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

Summary of changes:
 httemplate/edit/process/access_user.html | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)




More information about the freeside-commits mailing list