diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 18:07:59 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 18:07:59 +0000 |
commit | 498e811cbd8d454f21b97c1fcab6dd32862b0cee (patch) | |
tree | 32e0a6b7e64eb73e9f5aa9e577727676606a7fcc /views/default | |
parent | 5824a36ba715d76820aa66f38f4cc617973a6a15 (diff) | |
download | elgg-498e811cbd8d454f21b97c1fcab6dd32862b0cee.tar.gz elgg-498e811cbd8d454f21b97c1fcab6dd32862b0cee.tar.bz2 |
delete collection action - div prevented from showing
git-svn-id: https://code.elgg.org/elgg/trunk@1642 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default')
-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 09a684fac..c80482ecc 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\"> </a>";
+ echo "<div class=\"friends_collections_controls\"> <a href=\"" . $vars['url'] . "action/friends/deletecollection?collection={$coll->id}\" class=\"delete_collection\" onclick=\"$('div.friends_picker').empty();\"> </a>";
echo "</div>";
echo $coll->name;
|