Commit ba68986d by Vasiliy Baukin Committed by Qiang Xue

Update BaseArrayHelper.php

Recursive method call must have the same parameters as the first call.
parent ec48a61c
......@@ -462,7 +462,7 @@ class BaseArrayHelper
if (is_string($value)) {
$d[$key] = htmlspecialchars($value, ENT_QUOTES, $charset);
} elseif (is_array($value)) {
$d[$key] = static::htmlEncode($value, $charset);
$d[$key] = static::htmlEncode($value, $valuesOnly, $charset);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment