You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by yo...@apache.org on 2005/11/11 03:48:39 UTC

svn commit: r332427 - in /tomcat/container/tc5.5.x/webapps: admin/resources/dataSources.jspf docs/changelog.xml

Author: yoavs
Date: Thu Nov 10 18:48:38 2005
New Revision: 332427

URL: http://svn.apache.org/viewcvs?rev=332427&view=rev
Log:
Bugzilla 36673: http://issues.apache.org/bugzilla/show_bug.cgi?id=36673

Modified:
    tomcat/container/tc5.5.x/webapps/admin/resources/dataSources.jspf
    tomcat/container/tc5.5.x/webapps/docs/changelog.xml

Modified: tomcat/container/tc5.5.x/webapps/admin/resources/dataSources.jspf
URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/webapps/admin/resources/dataSources.jspf?rev=332427&r1=332426&r2=332427&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/webapps/admin/resources/dataSources.jspf (original)
+++ tomcat/container/tc5.5.x/webapps/admin/resources/dataSources.jspf Thu Nov 10 18:48:38 2005
@@ -25,8 +25,11 @@
         <logic:present name="checkboxes">
           <td scope="row"><div align="center" class="table-normal-text">
             <label for="dataSources"></label>
-            <input type="checkbox" name="dataSources"
-                  value="<%= dataSource %>" styleId="dataSources">
+
+            <!-- dataSource may contain internal double quotes, so single quote value -->
+            <!-- See Bugzilla 36673: http://issues.apache.org/bugzilla/show_bug.cgi?id=36673 -->
+            <input type="checkbox" name="dataSources" styleId="dataSources"
+                  value='<%= dataSource %>' />
           </td>
         </logic:present>
         <td scope="row"><div align="left" class="table-normal-text">

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=332427&r1=332426&r2=332427&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Thu Nov 10 18:48:38 2005
@@ -141,6 +141,9 @@
       <fix>
         <bug>35982</bug>: Can't delete mail sessions in admin webapp. (yoavs)
       </fix>
+      <fix>
+        <bug>36673</bug>: Similar to the one above, for data sources. (yoavs)
+      </fix>
     </changelog>
   </subsection>
 </section>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org