1 system.module | system_404() |
Menu callback; Returns the standard "Page not found" error page.
File
- core/
modules/ system/ system.module, line 4219 - Configuration system that lets administrators modify the workings of the site.
Code
function system_404() {
return '<p>' . t('The requested page "@path" could not be found.', array('@path' => request_uri())) . '</p>';
}