1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[feature/request-class] Prevent recursive_set_var from applying htmlspecialchars twice

PHPBB3-9716
This commit is contained in:
Igor Wiedler
2010-09-19 15:31:00 +02:00
parent 204ee4714b
commit 55808e11c9
2 changed files with 22 additions and 1 deletions

View File

@@ -176,7 +176,7 @@ class phpbb_request_type_cast_helper implements phpbb_request_type_cast_helper_i
$this->set_var($k, $k, $key_type, $multibyte, $multibyte);
$this->recursive_set_var($v, $default_value, $multibyte);
$this->set_var($var[$k], $v, $value_type, $multibyte);
$var[$k] = $v;
}
}
}