aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/views.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/views.php')
-rw-r--r--engine/lib/views.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php
index 40847d1cd..c296fa1ac 100644
--- a/engine/lib/views.php
+++ b/engine/lib/views.php
@@ -1266,14 +1266,14 @@ function autoregister_views($view_base, $folder, $base_location_path, $viewtype)
*
* @param string $title Title
* @param string $body Body
- * @param string $page_shell Optional page shell to use.
+ * @param string $page_shell Optional page shell to use. See page_shells view directory
* @param array $vars Optional vars array to pass to the page
* shell. Automatically adds title, body, and sysmessages
*
* @return string The contents of the page
* @since 1.8
*/
-function elgg_view_page($title, $body, $page_shell = 'page_shells/default', $vars = array()) {
+function elgg_view_page($title, $body, $page_shell = 'default', $vars = array()) {
// get messages - try for errors first
$sysmessages = system_messages(NULL, "errors");
@@ -1290,7 +1290,7 @@ function elgg_view_page($title, $body, $page_shell = 'page_shells/default', $var
$vars['sysmessages'] = $sysmessages;
// Draw the page
- $output = elgg_view($page_shell, $vars);
+ $output = elgg_view("page_shells/$page_shell", $vars);
$vars['page_shell'] = $page_shell;
@@ -1307,7 +1307,7 @@ function page_draw($title, $body, $sidebar = "") {
$vars = array(
'sidebar' => $sidebar
);
- echo elgg_view_page($title, $body, 'page_shells/default', $vars);
+ echo elgg_view_page($title, $body, 'default', $vars);
}
/**