X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=wwwroot%2Finc%2Feventz%2Freset_password.inc;fp=wwwroot%2Finc%2Feventz%2Freset_password.inc;h=ecaae400660b6cfb2f55e9104bd1b3c5dfe3c6a3;hb=831f7f0fbc4216861e88c664a2e723be1527a2ac;hp=3c5f205ce43c5a58c3c4f2cef3f7d8c8e9a5251b;hpb=71a598e9ace080c3a636a39cc110e1ed169a1a4e;p=mirrors%2FKyberia-bloodline.git diff --git a/wwwroot/inc/eventz/reset_password.inc b/wwwroot/inc/eventz/reset_password.inc index 3c5f205..ecaae40 100644 --- a/wwwroot/inc/eventz/reset_password.inc +++ b/wwwroot/inc/eventz/reset_password.inc @@ -9,16 +9,19 @@ function reset_password() { if ($login == '') { $error="Please enter name or id"; + print "$error"; return false; } if ($password1 == '' || $password2 == '') { $error="Please enter password"; + print "$error"; return false; } if ($password1 != $password2) { $error = "The two passwords that you entered do not match."; + print "$error"; return false; }