in
shoutbox.php
replace this:
PHP Code:
$shouts = $DB_site->query("
SELECT s.*, u.username
FROM " . TABLE_PREFIX . "shout s
LEFT JOIN " . TABLE_PREFIX . "user u ON (u.userid = s.userid)
ORDER BY dateline DESC, shoutid DESC LIMIT 25
");
with this:
PHP Code:
$shouts = $DB_site->query("
SELECT s.*, u.username
FROM " . TABLE_PREFIX . "shout s
LEFT JOIN " . TABLE_PREFIX . "user u ON (u.userid = s.userid)
ORDER BY dateline DESC, shoutid DESC LIMIT 10
");
and change the 10 to the amount of shouts you want to show
the installer and upgrader aren't working properly at the moment, but theres only 1 problem with the scripts, so the new version should be released soon