Page Chapter 20. Writing Secure Code, Page 311

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.