diff options
| author | Alex Rudyy <orudyy@apache.org> | 2013-06-01 12:32:26 +0000 |
|---|---|---|
| committer | Alex Rudyy <orudyy@apache.org> | 2013-06-01 12:32:26 +0000 |
| commit | f6b68fa2e1ca27d46e6080a3568ef5d785eed548 (patch) | |
| tree | 2dac56af5877dc921bc6b2207627f4fb16cec857 | |
| parent | 87752ec109ece40b8839f66ca33c476f1f7d6cc9 (diff) | |
| download | qpid-python-f6b68fa2e1ca27d46e6080a3568ef5d785eed548.tar.gz | |
QPID-4894: Fix removal of exchange binidings in web management console
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1488512 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Exchange.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Exchange.js b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Exchange.js index da63156176..48c82621b4 100644 --- a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Exchange.js +++ b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Exchange.js @@ -116,7 +116,7 @@ define(["dojo/_base/xhr", { util.deleteGridSelections( this.exchangeUpdater, - that.exchangeUpdater.bindingsGrid.grid, + this.exchangeUpdater.bindingsGrid.grid, "rest/binding/"+ encodeURIComponent(this.getVirtualHostName()) + "/" + encodeURIComponent(this.name), "Are you sure you want to delete binding for queue"); } |
