You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2008/04/30 03:53:33 UTC

svn commit: r652223 - /geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp

Author: dwoods
Date: Tue Apr 29 18:53:32 2008
New Revision: 652223

URL: http://svn.apache.org/viewvc?rev=652223&view=rev
Log:
GERONIMO-3995 Can not export a plugin via Admin Console in IE 6 SP2.  Thanks YunFeng for the patch.

Modified:
    geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp

Modified: geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp?rev=652223&r1=652222&r2=652223&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp (original)
+++ geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp Tue Apr 29 18:53:32 2008
@@ -23,7 +23,8 @@
 <script>
 function <portlet:namespace/>validateForm(){
     with(document.<portlet:namespace/>ExportForm){
-        if (configId.value==null || configId.value=="") {
+        selected = configId.options[configId.selectedIndex].text;
+        if (selected==null || selected=="") {
             alert("<fmt:message key="car.index.validateConfig"/>");
             return false;
         }