Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bandwagon
diff options
context:
space:
mode:
authordave@33eels.com <dave@33eels.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-08-29 14:35:32 (GMT)
committer dave@33eels.com <dave@33eels.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-08-29 14:35:32 (GMT)
commit480355bb7eb74da4469af31b68467229ec47522c (patch)
tree7196815f543ceb77669de3ece010dfd0673a7d49 /bandwagon
parent3c8d2078b00457f22a2b0ce8a08df0eb8cd62baa (diff)
Fix for bug 507328 ("Add-On Collector: "Manage Collection" link")
git-svn-id: http://svn.mozilla.org/addons/trunk@50458 4eb1ac78-321c-0410-a911-ec516a8615a5
Diffstat (limited to 'bandwagon')
-rw-r--r--bandwagon/content/ui/collectionsPaneController.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bandwagon/content/ui/collectionsPaneController.js b/bandwagon/content/ui/collectionsPaneController.js
index 9edc50d..57730a2 100644
--- a/bandwagon/content/ui/collectionsPaneController.js
+++ b/bandwagon/content/ui/collectionsPaneController.js
@@ -394,10 +394,10 @@ Bandwagon.Controller.CollectionsPane.doManageCollection = function(event)
var collection = Bandwagon.Controller.CollectionsPane.elemBandwagonCollections.selectedItem.collection;
- if (collection == null || !collection.links["manage"])
+ if (collection == null || !collection.links["edit"])
return;
- Bandwagon.Controller.CollectionsPane._openURL(collection.links["manage"]);
+ Bandwagon.Controller.CollectionsPane._openURL(collection.links["edit"]);
}
Bandwagon.Controller.CollectionsPane.doUpdate = function(event)