diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-17 17:58:04 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-17 17:58:04 +0000 |
commit | 27954260db99242dc317fbedb4786c56942692be (patch) | |
tree | d5b7778a9a0c910b4e85d8cd276eb60550ec9ff2 /mod | |
parent | 9f90c74d09510200022b979695b9649f60320c25 (diff) | |
download | elgg-27954260db99242dc317fbedb4786c56942692be.tar.gz elgg-27954260db99242dc317fbedb4786c56942692be.tar.bz2 |
style applied
git-svn-id: https://code.elgg.org/elgg/trunk@2790 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/groups/all.php | 4 | ||||
-rw-r--r-- | mod/groups/views/default/groups/find.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php index 327e6f8e7..5ba34947e 100644 --- a/mod/groups/all.php +++ b/mod/groups/all.php @@ -58,8 +58,8 @@ $title = sprintf(elgg_echo("groups:all"),page_owner_entity()->name); $area2 = elgg_view_title($title); - $area2 .= elgg_view("groups/group_sort_menu", array("count" => $group_count, "filter" => $filter)); - $area2 .= $objects; + $area2 .= "<div class='contentWrapper groups'>" . elgg_view("groups/group_sort_menu", array("count" => $group_count, "filter" => $filter)); + $area2 .= $objects . "</div>"; $body = elgg_view_layout('sidebar_boxes',$area1, $area2); // Finally draw the page diff --git a/mod/groups/views/default/groups/find.php b/mod/groups/views/default/groups/find.php index 3dc37dac0..e6b74f769 100644 --- a/mod/groups/views/default/groups/find.php +++ b/mod/groups/views/default/groups/find.php @@ -5,14 +5,14 @@ **/
?>
-<div class="group_search">
+<div class="sidebarBox">
<h3><?php echo elgg_echo('groups:searchtag'); ?></h3>
<form id="searchform" action="" method="get">
<input type="text" name="group_find" value="Search" onclick="if (this.value=='Search') { this.value='' }" class="search_input" />
<input type="submit" value="<?php echo elgg_echo('go'); ?>" class="search_submit_button" />
</form>
</div>
-<div class="user_groups_link">
+<div class="sidebarBox">
<?php
if(isloggedin())
echo "<p><a href=\"{$vars['url']}pg/groups/member/{$_SESSION['user']->username}\">". elgg_echo('groups:yours') ."</a></p>";
|