diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 14:47:36 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 14:47:36 +0000 |
commit | 8f15295624dada70d4f1fc9c97b69a4e2ae8301e (patch) | |
tree | c56609dd0aeec627ac4a9a6dc9e184ee7d9f23ac /views/default/friends | |
parent | 96acf3d78a3befa05da98a909d62f6d3feefaf6b (diff) | |
download | elgg-8f15295624dada70d4f1fc9c97b69a4e2ae8301e.tar.gz elgg-8f15295624dada70d4f1fc9c97b69a4e2ae8301e.tar.bz2 |
toolbar logout icon changed to work as a single image resource (for caching purposes), delete icon on collections changed to work as a single image rollover
git-svn-id: https://code.elgg.org/elgg/trunk@1605 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/friends')
-rw-r--r-- | views/default/friends/collection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/friends/collection.php b/views/default/friends/collection.php index e2f8d37b6..b4f015f16 100644 --- a/views/default/friends/collection.php +++ b/views/default/friends/collection.php @@ -28,7 +28,7 @@ //as collections are private, check that the logged in user is the owner
if($coll->owner_guid == $_SESSION['user']->getGUID())
- echo "<div class=\"friends_collections_controls\"> <a href=\"" . $vars['url'] . "action/friends/deletecollection?collection={$coll->id}\" class=\"delete_collection\"><img src=\"" . $vars['url'] ."_graphics/icon_customise_remove.gif\"/></a>";
+ echo "<div class=\"friends_collections_controls\"> <a href=\"" . $vars['url'] . "action/friends/deletecollection?collection={$coll->id}\" class=\"delete_collection\"> </a>";
echo "</div>";
echo $coll->name;
|