Hi,
see this:
<hansl>
if strstr("abc", "a")
print "yes"
endif
if (1 == 1) && strstr("abc", "a") != ""
print "aha"
endif
if (1 == 1) && strstr("abc", "a")
print "oho"
endif
</hansl>
The last thing gives an error, where I would expect that if the first
variant works, then so should the third/last one. Workaround is the
second explicit thing, obviously.
thanks,
sven