aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-14 02:42:25 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-14 02:42:25 +0000
commit4dc8868b80fdded7931f715b655970a858836b3d (patch)
tree603089e8f02a218e16e661925502ff20d2352f25 /mod
parent73a5af81b7be538ce318d708d19154dfc5c62b23 (diff)
downloadelgg-4dc8868b80fdded7931f715b655970a858836b3d.tar.gz
elgg-4dc8868b80fdded7931f715b655970a858836b3d.tar.bz2
changed layout on pages to one_sidebar
git-svn-id: http://code.elgg.org/elgg/trunk@7884 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r--mod/reportedcontent/start.php2
-rw-r--r--mod/sitepages/sitepages_functions.php2
-rw-r--r--mod/tagcloud/tagcloud.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php
index 15c1b7cae..d92eb05a2 100644
--- a/mod/reportedcontent/start.php
+++ b/mod/reportedcontent/start.php
@@ -54,7 +54,7 @@ function reportedcontent_page_handler($page) {
'content' => $content,
'sidebar' => $sidebar
);
- $body = elgg_view_layout('one_column_with_sidebar', $params);
+ $body = elgg_view_layout('one_sidebar', $params);
echo elgg_view_page(elgg_echo('reportedcontent:this'), $body);
}
diff --git a/mod/sitepages/sitepages_functions.php b/mod/sitepages/sitepages_functions.php
index 39693a2c8..4410bd7e7 100644
--- a/mod/sitepages/sitepages_functions.php
+++ b/mod/sitepages/sitepages_functions.php
@@ -97,7 +97,7 @@ function sitepages_get_page_content($page_type) {
$body .= elgg_echo('sitepages:notset');
}
- $content = elgg_view_layout('one_column_with_sidebar', array('content' => $body));
+ $content = elgg_view_layout('one_sidebar', array('content' => $body));
return $content;
}
diff --git a/mod/tagcloud/tagcloud.php b/mod/tagcloud/tagcloud.php
index ecbfc130c..df280bbae 100644
--- a/mod/tagcloud/tagcloud.php
+++ b/mod/tagcloud/tagcloud.php
@@ -19,6 +19,6 @@ $params = array(
'content' => $title . $tags,
'sidebar' => $sidebar
);
-$body = elgg_view_layout("one_column_with_sidebar", $params);
+$body = elgg_view_layout("one_sidebar", $params);
echo elgg_view_page(elgg_echo('tagcloud:site:title', array($page_owner->name)), $body); \ No newline at end of file