diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 13:33:58 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 13:33:58 +0000 |
commit | 558b17feaf25dbda262be2afbc76d79e006212a9 (patch) | |
tree | 6591c47e0bfba42eeee3aa6e13e9077928f8dc32 | |
parent | 0d824354c94d69b08345cdf8bf322aa07b4958c3 (diff) | |
download | elgg-558b17feaf25dbda262be2afbc76d79e006212a9.tar.gz elgg-558b17feaf25dbda262be2afbc76d79e006212a9.tar.bz2 |
Added class to user and group details
git-svn-id: https://code.elgg.org/elgg/trunk@1825 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/groups/views/default/groups/grouplisting.php | 2 | ||||
-rw-r--r-- | mod/profile/views/default/profile/listing.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/views/default/groups/grouplisting.php b/mod/groups/views/default/groups/grouplisting.php index 8d4169ed1..37701daa4 100644 --- a/mod/groups/views/default/groups/grouplisting.php +++ b/mod/groups/views/default/groups/grouplisting.php @@ -19,7 +19,7 @@ ); $info .= "<p><b><a href=\"" . $vars['entity']->getUrl() . "\">" . $vars['entity']->name . "</a></b></p>"; - $info .= "<p>" . $vars['entity']->briefdescription . "</p>"; + $info .= "<p class=\"owner_timestamp\">" . $vars['entity']->briefdescription . "</p>"; // num users, last activity, owner etc diff --git a/mod/profile/views/default/profile/listing.php b/mod/profile/views/default/profile/listing.php index 750674bb3..3715222ab 100644 --- a/mod/profile/views/default/profile/listing.php +++ b/mod/profile/views/default/profile/listing.php @@ -33,7 +33,7 @@ $location = $vars['entity']->location;
if (!empty($location)) {
- $info .= "<p>" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";
+ $info .= "<p class=\"owner_timestamp\">" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";
}
echo elgg_view_listing($icon, $info);
|