diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2018-08-02 12:59:18 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2018-08-02 12:59:18 -0700 |
| commit | ed8e7eab97089e2ad22d63bac581b67b8b6f5454 (patch) | |
| tree | 4f56f34c1812908d0b5a04b5eec236eee836596a /httemplate/edit/process/elements/process.html | |
| parent | 2fcc552915112ffb3e5b452d6b9662c386c7eba8 (diff) | |
fix editing employee pw, RT#32456
Diffstat (limited to 'httemplate/edit/process/elements/process.html')
| -rw-r--r-- | httemplate/edit/process/elements/process.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/edit/process/elements/process.html b/httemplate/edit/process/elements/process.html index c197eb123..85f060e32 100644 --- a/httemplate/edit/process/elements/process.html +++ b/httemplate/edit/process/elements/process.html @@ -80,8 +80,12 @@ Example: 'precheck_callback' => sub { my( $cgi ) = @_; }, #after the new object is created + #return an error string or empty for no error 'post_new_object_callback' => sub { my( $cgi, $object ) = @_; }, + #run right before replacing (not run for inserts) + 'edit_callback' => sub { my( $new, $old ) = @_; }, + #after everything's inserted 'noerror_callback' => sub { my( $cgi, $object ) = @_; }, |
