Ok - here comes a fix:
Open the nuPassword form via the Developer Console (F12).
Paste this code and hit the return key:
Modify this part of the code in BS PHP event:
Code: Select all
$p = nuProcedure('nuCheckPasswordPolicy');
if($_POST['nuProcedureEval'] != 'Procedure <b></b> - run inside '){
eval($p);
if($check == false){
return;
}
}
Save the changes and enjoy a working save password dialog!
Info for the developer: This fix wouldn't be necessary if nuProcedure() returned an empty string in case the passed function does not exist.