4 Mar
2000
4 Mar
'00
2:08 p.m.
Pierre-Julien GRIZEL wrote:
Alessandra Pessolano wrote:
I have some problems with <dtml-if> comand. It's possible to insert the following expression: <dtml-if "OUTPUT == 'PROENG' and 'MATRIX'"> OK </dtml-if>
if you mean and <dtml-if "(OUTPUT == 'PROENG') and 'MATRIX'"> then it is equivalent to <dtml-if "OUTPUT='PROENG'"> if OTOH you mean and <dtml-if "OUTPUT == ('PROENG' and 'MATRIX')"> it is same as <dtml-if "OUTPUT=='MATRIX'"> which one did you mean ? ---------------- Hannu