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     : phpns-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~phpns-team
More help   : https://help.launchpad.net/ListHelp

Reply via email to