You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2009/11/25 01:31:25 UTC

svn commit: r883933 - /ofbiz/trunk/applications/product/webapp/catalog/product/EditProductParties.ftl

Author: doogie
Date: Wed Nov 25 00:31:25 2009
New Revision: 883933

URL: http://svn.apache.org/viewvc?rev=883933&view=rev
Log:
In the Product/Parties screen, the link to the related party was broken.
Instead of showing the related party, it would show the user who was
logged into the partymgr backend.  The patch that fixed this was
provided by Ean Schuessler in
(https://issues.apache.org/jira/browse/OFBIZ-3027) OFBIZ-3027

Modified:
    ofbiz/trunk/applications/product/webapp/catalog/product/EditProductParties.ftl

Modified: ofbiz/trunk/applications/product/webapp/catalog/product/EditProductParties.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/product/EditProductParties.ftl?rev=883933&r1=883932&r2=883933&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/webapp/catalog/product/EditProductParties.ftl (original)
+++ ofbiz/trunk/applications/product/webapp/catalog/product/EditProductParties.ftl Wed Nov 25 00:31:25 2009
@@ -32,7 +32,7 @@
       <#assign line = line + 1>
       <#assign curRoleType = productRole.getRelatedOneCache("RoleType")>
       <tr valign="middle"<#if rowClass == "1"> class="alternate-row"</#if>>
-        <td><a href="/partymgr/control/viewprofile?party_id=${(productRole.partyId)?if_exists}" target="_blank" class="buttontext">${(productRole.partyId)?if_exists}</a></td>
+        <td><a href="/partymgr/control/viewprofile?partyId=${(productRole.partyId)?if_exists}" target="_blank" class="buttontext">${(productRole.partyId)?if_exists}</a></td>
         <td>${(curRoleType.get("description",locale))?if_exists}</td>
         <#assign hasntStarted = false>
         <#if (productRole.getTimestamp("fromDate"))?exists && Static["org.ofbiz.base.util.UtilDateTime"].nowTimestamp().before(productRole.getTimestamp("fromDate"))> <#assign hasntStarted = true></#if>