Magnus thx for sharing the hack. It is a big hit which is always requested.
I have a technical suggestion though: Using
PHP Code:
ORDER BY rand() LIMIT 1
in a SQL query is not the perfect way of getting a single quote (altough simplest). It may run fine in many instances but if your board has a heavy traffic (ie the query runs a lot) and your quote list is also long, it creates a big load on the server as rand() function attempts to create a copy of entire quote table on DB everytime it runs. Kurafire's vb2 version had the same problem and IMO it may be better if you implement a different algorithm to grab the quotes evertime it is called. My 2 cents.