1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 20:57:26 +02:00

Fixes #4288 - Checkboxes not saving correctly from usersettings.php

This commit is contained in:
Cameron
2020-12-09 12:07:07 -08:00
parent 5fc4aea0f0
commit 00147e6e1c
2 changed files with 4 additions and 1289 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -420,7 +420,7 @@ class e107_user_extended
case EUF_PREFIELD: case EUF_PREFIELD:
case EUF_ADDON: case EUF_ADDON:
$arr[$field] = filter_var($value,FILTER_SANITIZE_STRING); $arr[$field] = e107::getParser()->filter($value);
break; break;
case EUF_RICHTEXTAREA : // rich textarea (using WYSIWYG editor) case EUF_RICHTEXTAREA : // rich textarea (using WYSIWYG editor)
@@ -1173,7 +1173,7 @@ class e107_user_extended
/** /**
* @param bool|false $no_cache * @param bool|false $no_cache
* @return bool * @return bool|array
*/ */
function parse_extended_xml($no_cache = false) function parse_extended_xml($no_cache = false)
{ {