i created a quick-n-dirty random quote generator using the 'fortune' program. the problem is, when i reload the page it should generate a new fortune/quote, and it doesn't. i know this is an issue with bml, because when i do the same thing in straight perl, it works fine. any idea why this might be?
if it matters, the bml code block is:
(=_CODE $quote = `/usr/games/fortune -n 200 s`; return $quote; _CODE=)
any ideas why it might be "caching" the output of fortune and not regenerating like it should?