svn commit: r1774772 - /ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl

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

svn commit: r1774772 - /ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl

mbrohl
Author: mbrohl
Date: Sat Dec 17 15:11:03 2016
New Revision: 1774772

URL: http://svn.apache.org/viewvc?rev=1774772&view=rev
Log:
Fixed: Error occurred when making Shopping list public/private from Party Detail screen.
(OFBIZ-7683)

Thanks: Ankit Joshi for reporting and providing the patch.

Modified:
    ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl

Modified: ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl?rev=1774772&r1=1774771&r2=1774772&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl (original)
+++ ofbiz/trunk/applications/party/template/party/EditShoppingList.ftl Sat Dec 17 15:11:03 2016
@@ -103,8 +103,8 @@ under the License.
             <select name="isPublic" <#if shoppingList.listName?default("") == "auto-save">disabled</#if>>
               <option>${shoppingList.isPublic}</option>
               <option value="${shoppingList.isPublic}">--</option>
-              <option>${uiLabelMap.CommonYes}</option>
-              <option>${uiLabelMap.CommonNo}</option>
+              <option value="Y">${uiLabelMap.CommonYes}</option>
+              <option value="N">${uiLabelMap.CommonNo}</option>
             </select>
           </td>
         </tr>