Update of 
/var/cvs/contributions/CMSContainer/cmsc/contentrepository/src/webapp/editors/resources
In directory 
james.mmbase.org:/tmp/cvs-serv1558/cmsc/contentrepository/src/webapp/editors/resources

Modified Files:
      Tag: b1_4
        urlinfo.jsp urlsearch.jsp 
Log Message:
CMSC-1190 - Error in URL info screen in content explorer; was not properly 
fixed, this should do it. Made code similar to upstream code.


See also: 
http://cvs.mmbase.org/viewcvs/contributions/CMSContainer/cmsc/contentrepository/src/webapp/editors/resources
See also: http://www.mmbase.org/jira/browse/CMSC-1190


Index: urlinfo.jsp
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer/cmsc/contentrepository/src/webapp/editors/resources/urlinfo.jsp,v
retrieving revision 1.6.2.1
retrieving revision 1.6.2.2
diff -u -b -r1.6.2.1 -r1.6.2.2
--- urlinfo.jsp 16 Dec 2008 13:00:20 -0000      1.6.2.1
+++ urlinfo.jsp 6 Jan 2009 13:10:45 -0000       1.6.2.2
@@ -41,10 +41,10 @@
                                     <c:when test="${empty isValidUrl}">
                                         <fmt:message 
key="urlsearch.validurl.unknown" />
                                     </c:when>
-                                    <c:when test="${!isValidUrl}">
+                                    <c:when test="${isValidUrl eq false}">
                                         <fmt:message 
key="urlsearch.validurl.invalid" />
                                     </c:when>
-                                    <c:when test="${isValidUrl}">
+                                    <c:when test="${isValidUrl eq true}">
                                         <fmt:message 
key="urlsearch.validurl.valid" />
                                     </c:when>
                                     <c:otherwise>


Index: urlsearch.jsp
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer/cmsc/contentrepository/src/webapp/editors/resources/urlsearch.jsp,v
retrieving revision 1.7.2.2
retrieving revision 1.7.2.3
diff -u -b -r1.7.2.2 -r1.7.2.3
--- urlsearch.jsp       3 Jan 2009 18:00:45 -0000       1.7.2.2
+++ urlsearch.jsp       6 Jan 2009 13:10:46 -0000       1.7.2.3
@@ -98,10 +98,10 @@
                                     <c:when test="${empty isValidUrl}">
                                         <fmt:message 
key="urlsearch.validurl.unknown" />
                                     </c:when>
-                                    <c:when test="${isValidUrl eq 0}">
+                                    <c:when test="${isValidUrl eq false}">
                                         <fmt:message 
key="urlsearch.validurl.invalid" />
                                     </c:when>
-                                    <c:when test="${isValidUrl eq 1}">
+                                    <c:when test="${isValidUrl eq true}">
                                         <fmt:message 
key="urlsearch.validurl.valid" />
                                     </c:when>
                                     <c:otherwise>
_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to