Chapter 8. The Theme System, Page 195
Tue, 09/02/2008 - 2:36pm — jvandyk
Location on the page:
Code example
Chapter:
8. The Theme System
Error:
return array(
'breadcrumb' => array(
'arguments' => array ('breadcrumb' => NULL),
);
);
Correction:
return array(
'breadcrumb' => array(
'arguments' => array('breadcrumb' => NULL),
),
);
Description of the Error:
Semicolon following array closure should be a comma. Also, extra space after array keyword.
