blob: f15d39ec8d32a2173bf9ca13fc0e45e0b0d72299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php global $mm;
/**
* This is the global 404 page for MessageManager, top-level views
* should generally provide a more specific one for their sub-directories
*/
$mm->status('404 Not Found');
$t = $mm->template();
$mm->header('Page Not Found');
$t->paragraph("Awe man, the page you requested wasn't found.");
$mm->footer();
|