diff options
author | Ivan Kohler <ivan@freeside.biz> | 2018-08-02 12:59:15 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2018-08-02 12:59:15 -0700 |
commit | 8944f813b2d664b38bcbe349ac6897a0314e3b9d (patch) | |
tree | 30b2a66402729da42e191dba0ee30e531ecd7532 /httemplate/edit/process/elements | |
parent | b617db414a0073ae69f7416d113541679f5d7bfd (diff) |
fix editing employee pw, RT#32456
Diffstat (limited to 'httemplate/edit/process/elements')
-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 ) = @_; }, |