diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-09 09:39:34 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-09 09:39:34 +0000 |
commit | ff4779ddb3ef005553187e4486d4d775220d8b8f (patch) | |
tree | 7765c79ad2cffd028dd5da9d1db68ca176faf9a3 /friends | |
parent | 9bb993778bc7a0c6f17673e509ed147202e69ee7 (diff) | |
download | elgg-ff4779ddb3ef005553187e4486d4d775220d8b8f.tar.gz elgg-ff4779ddb3ef005553187e4486d4d775220d8b8f.tar.bz2 |
Updated new page canvases (and calls to elgg_view_layout) so that empty vars are not required.
git-svn-id: http://code.elgg.org/elgg/trunk@5316 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends')
-rw-r--r-- | friends/add.php | 3 | ||||
-rw-r--r-- | friends/collections.php | 3 | ||||
-rw-r--r-- | friends/edit.php | 2 | ||||
-rw-r--r-- | friends/index.php | 2 | ||||
-rw-r--r-- | friends/of.php | 2 |
5 files changed, 5 insertions, 7 deletions
diff --git a/friends/add.php b/friends/add.php index a70dd12cf..a7bbb6218 100644 --- a/friends/add.php +++ b/friends/add.php @@ -20,8 +20,7 @@ $area2 = elgg_view('friends/forms/edit', array( ); // Format page -$body = elgg_view_layout('one_column_with_sidebar', '', - elgg_view_title(elgg_echo('friends:collections:add')) . $area2); +$body = elgg_view_layout('one_column_with_sidebar', elgg_view_title(elgg_echo('friends:collections:add')) . $area2); // Draw it page_draw(elgg_echo('friends:collections:add'),$body);
\ No newline at end of file diff --git a/friends/collections.php b/friends/collections.php index e98f4b6a6..5d3149de5 100644 --- a/friends/collections.php +++ b/friends/collections.php @@ -17,8 +17,7 @@ gatekeeper(); $area2 = elgg_view_access_collections($_SESSION['user']->getGUID()); // Format page -$body = elgg_view_layout('one_column_with_sidebar', '', - elgg_view_title(elgg_echo('friends:collections')) . $area2); +$body = elgg_view_layout('one_column_with_sidebar', elgg_view_title(elgg_echo('friends:collections')) . $area2); // Draw it page_draw(elgg_echo('friends:collections'),$body);
\ No newline at end of file diff --git a/friends/edit.php b/friends/edit.php index b9d682eb3..428b44bad 100644 --- a/friends/edit.php +++ b/friends/edit.php @@ -29,7 +29,7 @@ $collection_members = get_members_of_access_collection($collection_id); $area2 = elgg_view('friends/forms/edit', array('collection' => $collection, 'collection_members' => $collection_members)); // Format page -$body = elgg_view_layout('one_column_with_sidebar', '', $area1.$area2); +$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2); // Draw it page_draw(elgg_echo('friends:add'),$body);
\ No newline at end of file diff --git a/friends/index.php b/friends/index.php index 1a093da2e..7ddbd45cc 100644 --- a/friends/index.php +++ b/friends/index.php @@ -17,6 +17,6 @@ $friends = sprintf(elgg_echo("friends:owned"),$owner->name); $area1 = elgg_view_title($friends); $area2 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','',0,10,false); -$body = elgg_view_layout('one_column_with_sidebar', '', $area1 . $area2); +$body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2); page_draw($friends, $body); diff --git a/friends/of.php b/friends/of.php index b30b47215..f8c3b1981 100644 --- a/friends/of.php +++ b/friends/of.php @@ -17,7 +17,7 @@ $friends_of = sprintf(elgg_echo("friends:of:owned"),$owner->name); $area1 = elgg_view_title($friends_of); $area2 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','',0,10,false); -$body = elgg_view_layout('one_column_with_sidebar', '', $area1 . $area2); +$body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2); page_draw($friends_of, $body); |