The following warnings occurred: | ||||||||||||||||||||||||
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
|
![]() |
< in Passwords - Printable Version +- UserSpice (https://userspice.com/forums) +-- Forum: Support Center (https://userspice.com/forums/forumdisplay.php?fid=23) +--- Forum: UserSpice 4.3 and Below (https://userspice.com/forums/forumdisplay.php?fid=26) +--- Thread: < in Passwords (/showthread.php?tid=625) Pages:
1
2
|
< in Passwords - karsen - 07-18-2017 Ah, we forgot an Code: else Code: else { Code: if (!$bypassSanitize) $postItem = self::sanitize($_POST[$item]); Code: else $postItem = $_POST[$item]; Code: return $postItem; Code: } Code: else { Code: if (!$bypassSanitize) $getItem = self::sanitize($_GET[$item]); Code: else $getItem = $_GET[$item]; Code: return $getItem; Code: } I'd probably rearrange the logic to remove the Code: not < in Passwords - Brandin - 07-18-2017 Thanks Karsen! For reference: This will need to be changed on user_settings and admin_user if you deploy this. Thank you! < in Passwords - karsen - 07-18-2017 Also on forgot_password_reset. I recently added Zxcvbn checks to passwords and had to make changes to all of the same pages. < in Passwords - Brandin - 07-18-2017 Ahh, thank you! |