Quote:
Originally Posted by CtrlAltDel
ok after looking at this the code used to pick the random quote is flat out wrong
Code:
SELECT * FROM quotes WHERE approved=1 ORDER BY rand() LIMIT 1
change it to this
Code:
SELECT *, rand() AS r FROM quotes WHERE approved='1' ORDER BY r LIMIT 1
This is a more accurate and more server friendly query.
|
What file is this change in? Can't seem to find it in quote.php