Hi all,
the following questions have come up:
1) This doesn't work:
<hansl>
if {1} == {}
endif
</hansl>
Actually I can understand why, just checking if it's intended.
2) But this also doesn't work (with suitably defined variables):
dummy = sscanf( strsub(isodate(newepochdate),"-",""), "%d",
newdate )
while the non-nested variant does work:
<hansl>
tempstr = strsub(isodate(newepochdate),"-","")
dummy = sscanf( tempstr, "%d", newdate )
</hansl>
Here I don't see why there should be a difference -- it rather looks as
if the earlier bug with string-producing functions hasn't been fully
squashed.
thanks,
sven