You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/10/20 13:53:47 UTC

svn commit: r1025517 - /geronimo/server/branches/2.2/plugins/console/console-filter/src/main/resources/XSRF.js

Author: genspring
Date: Wed Oct 20 11:53:46 2010
New Revision: 1025517

URL: http://svn.apache.org/viewvc?rev=1025517&view=rev
Log:
GERONIMO-5604 Failed to expand deploy failed information in "Deployer" porlet if fail to deploy an application with Firefox and IE 6.0

Modified:
    geronimo/server/branches/2.2/plugins/console/console-filter/src/main/resources/XSRF.js

Modified: geronimo/server/branches/2.2/plugins/console/console-filter/src/main/resources/XSRF.js
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.2/plugins/console/console-filter/src/main/resources/XSRF.js?rev=1025517&r1=1025516&r2=1025517&view=diff
==============================================================================
--- geronimo/server/branches/2.2/plugins/console/console-filter/src/main/resources/XSRF.js (original)
+++ geronimo/server/branches/2.2/plugins/console/console-filter/src/main/resources/XSRF.js Wed Oct 20 11:53:46 2010
@@ -26,7 +26,7 @@ function updateLinks() {
             elements[i].href = link + '&formId=' + formID;
         }
         
-        if(link != null && link.indexOf("/console/portal/")==-1){
+        if(link != null && isURL(link) && link.indexOf("/console/portal/")==-1){
         
             if (document.all) {    //IE
                 elements[i].target="_parent";