summaryrefslogtreecommitdiff
path: root/apps/um/views/pages/users/404.html.php
blob: 00f9dcad094b80dc50aa3a5a213eca8cdc8544b6 (plain)
1
2
3
4
5
6
7
8
9
10
<?php global $VARS;
$t = $VARS['template'];
$username = $VARS['username'];

$t->status('404 Not Found');
$t->header('User Not Found');
$t->tag('h1',array(),"404: Not Found");
$t->paragraph('No user with the name <q>'.
              htmlentities($username).'</q> exists.');
$t->footer();