Xiph: no, this hack does not, in any way, keep track of what user submits which and how many quotes. If you want that, use Lesane's hack. Mine is a more neutral, unbiased hack with an add-on that makes it a bit less neutral and unbiased, but still more than Lesane's.
If you want the total amount of quotes on forumhome, you should be able to easily add a query for that. Something like this:
in root/index.php find:
PHP Code:
// get total posts
ADD ABOVE:
PHP Code:
$quotetotal=$DB_site->query_first('SELECT COUNT(*) AS count FROM quotes');
(or, to include only quotes that are moderated, if you use the Add-on hack: )
PHP Code:
$quotetotal=$DB_site->query_first("SELECT COUNT(*) AS count FROM quotes WHERE mod!='N'");
And I've not been in IRC much because of this and other things. Project 3.5 is 99% done, I'm almost ready to send everything online and do the online debugging before opening up. ^_^
Boofo: No, not really. The only difference really, is that the old hack used a Text Input field for Quote, and the new (this) hack uses a Textarea field for Quote, in the Edit page. That, and the new hack doesn't allow empty entries...