14 May
2001
14 May
'01
3:37 p.m.
From: Paul Zwarts [mailto:paz@oratrix.com]
What remains to be said. Even IF there are two alike rows, then shouldnt:
<dtml-in "something(pk=1)" size=1> dtml-var pk> </dtml-in>
Output the record only once?
No, because of the "orphan" feature of dtml-in. If you use: <dtml-in "somthing(pk=1)" size=1 orphan=0> <dtml-var pk> </dtml-in> Then you should get the expected behavior. -Randy