function navigation404_404_page in 404 Navigation 7
Our custom menu callback that returns Drupal's standard 404 message.
1 string reference to 'navigation404_404_page'
- navigation404_menu in ./
navigation404.module - Implements hook_menu().
File
- ./
navigation404.module, line 20
Code
function navigation404_404_page() {
drupal_set_title(t('Page not found'));
return t('The requested page could not be found.');
}