Derick Rethans wrote:
On Mon, 27 Feb 2006, Nuno Lopes wrote:

CCing sytem guys. We are still receiving notes with html entities, like:
http://news.php.net/php.notes/104499
Can you please check whats going on, please?

The input filter does this I assume. Which filter did you configure by default Rasmus?

filter.default=special_chars

So, should we add something to revert the filter?

like:
if (function_exists('input_get')) {
   $note = input_get(INPUT_POST, 'note', FILTER_UNSAFE_RAW);
} else {
   $note = $_POST['note'];
}

Nuno

Reply via email to