Fix bad method call in Auth.pm
Fix bad help key in DataForm
This commit is contained in:
parent
f36879c55c
commit
ee83a320d0
3 changed files with 2 additions and 4 deletions
|
|
@ -14,6 +14,7 @@
|
||||||
- fix: captcha image is blank (Martink Kamerbeek / Procolix)
|
- fix: captcha image is blank (Martink Kamerbeek / Procolix)
|
||||||
- fix: Pagination of search results does not work (Martin Kamerbeek / Procolix)
|
- fix: Pagination of search results does not work (Martin Kamerbeek / Procolix)
|
||||||
- fix: Workflow Commit with approval Error (Martin Kamerbeek / Procolix)
|
- fix: Workflow Commit with approval Error (Martin Kamerbeek / Procolix)
|
||||||
|
- fix: Incorrect method call in Auth.pm
|
||||||
|
|
||||||
|
|
||||||
6.99.3
|
6.99.3
|
||||||
|
|
|
||||||
|
|
@ -248,7 +248,7 @@ sub createAccountSave {
|
||||||
workflowId=>$self->session->setting->get("runOnRegistration"),
|
workflowId=>$self->session->setting->get("runOnRegistration"),
|
||||||
methodName=>"new",
|
methodName=>"new",
|
||||||
className=>"WebGUI::User",
|
className=>"WebGUI::User",
|
||||||
parameters=>$self->session->userId,
|
parameters=>$self->session->user->userId,
|
||||||
priority=>1
|
priority=>1
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -352,9 +352,6 @@ our $HELP = {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'name' => undef
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'required' => 1,
|
'required' => 1,
|
||||||
'name' => 'form.send'
|
'name' => 'form.send'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue