Commit d33c7c7c authored by Jérome Perrin's avatar Jérome Perrin

explicitly get uid from REQUEST to avoid conflict with context.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5057 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2822bf61
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<tr class="location-bar"> <tr class="location-bar">
<td colspan="2" align="left"> <td colspan="2" align="left">
<div class="std-text"> <div class="std-text">
<strong>Catalog record at <dtml-var expr="getpath(_.int(uid))"></strong> <strong>Catalog record at <dtml-var expr="getpath(_.int(REQUEST.uid))"></strong>
</div> </div>
</td> </td>
</tr> </tr>
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
Catalog gives back during searches.</p><br /> Catalog gives back during searches.</p><br />
</td> </td>
</tr> </tr>
<dtml-in expr="getMetadataForUid(_.int(uid)).items()"> <dtml-in expr="getMetadataForUid(_.int(REQUEST.uid)).items()">
<dtml-if name="sequence-start"> <dtml-if name="sequence-start">
<tr class="list-header"> <tr class="list-header">
<td align="left" width="5%" bgcolor="#ffffff">&nbsp;</td> <td align="left" width="5%" bgcolor="#ffffff">&nbsp;</td>
...@@ -77,7 +77,7 @@ Keyword or Text indexes, the results are returned as a tuple, and will ...@@ -77,7 +77,7 @@ Keyword or Text indexes, the results are returned as a tuple, and will
show as '(one, two, three)', rather than in a more normal way.</p><br /> show as '(one, two, three)', rather than in a more normal way.</p><br />
</td> </td>
</tr> </tr>
<dtml-in expr="getIndexDataForUid(_.int(uid)).items()"> <dtml-in expr="getIndexDataForUid(_.int(REQUEST.uid)).items()">
<dtml-if name="sequence-start"> <dtml-if name="sequence-start">
<tr class="list-header"> <tr class="list-header">
<td align="left" width="5%" bgcolor="#ffffff">&nbsp;</td> <td align="left" width="5%" bgcolor="#ffffff">&nbsp;</td>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment