blob: b7ba3ae9b24316b349b0c5be7ce8f87931abb060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* Page shell for errors
*
* This is for errors that are not unhandled exceptions. Those are handled
* through the failsafe viewtype to guarantee that no further exceptions occur.
* An example error would be 404 (page not found).
*
* @uses $vars['title'] The page title
* @uses $vars['body'] The main content of the page
* @uses $vars['sysmessages'] A 2d array of various message registers, passed from system_messages()
*/
echo elgg_view('page/default', $vars);
|