Page Chapter 4. The Menu System, Page 44
Wed, 05/02/2007 - 11:51pm — mpare
Location on the page:
Implementation of hook_menu()
Error:
function mymodule_menu()
Correction:
return $items;
Description of the Error:
should the function return $items?
[Yes! The final line of mymodule_menu() was omitted, and should be return $items; -JV]
