Question #79493 on phpns changed:
https://answers.launchpad.net/phpns/+question/79493
lundern gave more information on the question:
function decode_data($data) {
if (is_array($data)) {
foreach ($data as $key => $value) {
$data[$key] = htmlspecialchars_decode($value);
}
} else {
$data = htmlspecialchars_decode($data);
}
return $data;
}
This is the code where it happens. (the error)
--
You received this question notification because you are a member of
Phpns-team, which is an answer contact for phpns.
_______________________________________________
Mailing list: https://launchpad.net/~phpns-team
Post to : [email protected]
Unsubscribe : https://launchpad.net/~phpns-team
More help : https://help.launchpad.net/ListHelp