The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.2.25 (Linux)
File Line Function
/printthread.php(287) : eval()'d code 2 errorHandler->error
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



UserSpice
< 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:
}
as well as
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
so its more straightforward but this should fix the other inputs.


< 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!