From baec2d08486f1047b02086616ae7a3be305204ef Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 1 Jul 2010 15:29:47 +0000 Subject: added a parameter to the page_draw function so you can specify a different page shell if required. git-svn-id: http://code.elgg.org/elgg/trunk@6602 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/views.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/lib/views.php') diff --git a/engine/lib/views.php b/engine/lib/views.php index 60078fa7a..c1c07024a 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1019,7 +1019,7 @@ function autoregister_views($view_base, $folder, $base_location_path, $viewtype) * @param unknown_type $body * @return unknown */ -function page_draw($title, $body, $sidebar = "") { +function page_draw($title, $body, $sidebar = "", $page_shell = 'page_shells/default') { // get messages - try for errors first $sysmessages = system_messages(null, "errors"); @@ -1032,7 +1032,7 @@ function page_draw($title, $body, $sidebar = "") { } // Draw the page - $output = elgg_view('page_shells/default', array( + $output = elgg_view($page_shell, array( 'title' => $title, 'body' => $body, 'sidebar' => $sidebar, -- cgit v1.2.3