Page Chapter 20. Writing Secure Code, Page 311
Tue, 05/13/2008 - 11:02am — jvandyk
Location on the page:
Code snippet at top
Error:
$titles array_map($titles, 'check_plain');
Correction:
$titles = array_map('check_plain', $titles);
Description of the Error:
Parameters for array_map() are reversed.
