svn commit: r945576 - in /ofbiz/branches/release10.04: ./ specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r945576 - in /ofbiz/branches/release10.04: ./ specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl

erwan
Author: erwan
Date: Tue May 18 10:05:15 2010
New Revision: 945576

URL: http://svn.apache.org/viewvc?rev=945576&view=rev
Log:
Applied fix from trunk for revision: 945573
 XHTML validation errors round 2+ (specialpurpose/projectmgr) - OFBIZ-3672 (https://issues.apache.org/jira/browse/OFBIZ-3762)

Modified:
    ofbiz/branches/release10.04/   (props changed)
    ofbiz/branches/release10.04/specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl

Propchange: ofbiz/branches/release10.04/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue May 18 10:05:15 2010
@@ -1,3 +1,3 @@
 /ofbiz/branches/addbirt:831210-885099,885686-886087
 /ofbiz/branches/multitenant20100310:921280-927264
-/ofbiz/trunk:939988,939990,939999,940025,940053,940234,940248,940309,940401,940410,940425,940779,940815,940849,941007,941047,941109,941177,941199,941261,941440,941600,941999,942084,942406,942414,942671,942883-942884,943168,943271-943272,944614,944621,944623,944647,944669,944797,944895,945010,945018,945026,945118
+/ofbiz/trunk:939988,939990,939999,940025,940053,940234,940248,940309,940401,940410,940425,940779,940815,940849,941007,941047,941109,941177,941199,941261,941440,941600,941999,942084,942406,942414,942671,942883-942884,943168,943271-943272,944614,944621,944623,944647,944669,944797,944895,945010,945018,945026,945118,945573

Modified: ofbiz/branches/release10.04/specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/release10.04/specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl?rev=945576&r1=945575&r2=945576&view=diff
==============================================================================
--- ofbiz/branches/release10.04/specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl (original)
+++ ofbiz/branches/release10.04/specialpurpose/projectmgr/webapp/projectmgr/project/edittaskandassoc.ftl Tue May 18 10:05:15 2010
@@ -90,7 +90,7 @@ under the License.
             <select name="currentStatusId">
               <#if task?exists>
                 <#assign currentStatus = task.geRelatedOne("CurrentStatusItem")?if_exists>
-                <option SELECTED value="${currentStatus.currentStatusId}">${currentStatus.description}</option>
+                <option selected="selected" value="${currentStatus.currentStatusId}">${currentStatus.description}</option>
                 <#assign statusValidChangeToDetailList = delegator.findByAnd("StatusValidChangeToDetail", Static["org.ofbiz.base.util.UtilMisc"].toMap("statusId", currentStatus.currentStatusId))>
                 <#list statusValidChangeToDetailList as statusValidChangeToDetail>
                   <option value=${statusValidChangeToDetail.statusId}>[${uiLabelMap.WorkEffortGeneral}]${statusValidChangeToDetail.description}</option>
@@ -120,7 +120,7 @@ under the License.
             </#if>
             <select name="priority" size="1">
               <#if priority?exists>
-                <option SELECTED value="${priority}">${priority}</option>
+                <option selected="selected" value="${priority}">${priority}</option>
                 <option></option>
                 <option value=1>${uiLabelMap.WorkEffortPriorityOne}</option>
                 <option value=2>${uiLabelMap.WorkEffortPriorityTwo}</option>