mirror of
https://github.com/e107inc/e107.git
synced 2025-07-30 19:30:25 +02:00
Fixes #4288 - Checkboxes not saving correctly from usersettings.php
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -420,7 +420,7 @@ class e107_user_extended
|
||||
case EUF_PREFIELD:
|
||||
case EUF_ADDON:
|
||||
|
||||
$arr[$field] = filter_var($value,FILTER_SANITIZE_STRING);
|
||||
$arr[$field] = e107::getParser()->filter($value);
|
||||
break;
|
||||
|
||||
case EUF_RICHTEXTAREA : // rich textarea (using WYSIWYG editor)
|
||||
@@ -1173,7 +1173,7 @@ class e107_user_extended
|
||||
|
||||
/**
|
||||
* @param bool|false $no_cache
|
||||
* @return bool
|
||||
* @return bool|array
|
||||
*/
|
||||
function parse_extended_xml($no_cache = false)
|
||||
{
|
||||
|
Reference in New Issue
Block a user