You need to rename shownews.php to shownewsces.php apparently.
And yes, that was the intention of the hack, except I wanted anyone with permission to be able to post an entry in the same blog, and I wanted them to count as posts.
EDIT: To make that Database error stop:
In newsces.php, find:
PHP Code:
$threadscount = $db->query_first_slave("
SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > $lastread AND open <> 10, 1, 0)) AS newthread
$hook_query_fields
FROM " . TABLE_PREFIX . "thread AS thread
$tachyjoin
$hook_query_joins
WHERE forumid = $foruminfo[forumid]
AND sticky = 0
$visiblethreads
$globalignore
$limitothers
$datecut
$hook_query_where
");
Replace with:
PHP Code:
$threadscount = $db->query_first_slave("
SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > $lastread AND open <> 10, 1, 0)) AS newthread
$hook_query_fields
FROM " . TABLE_PREFIX . "thread AS thread
$tachyjoin
$hook_query_joins
WHERE forumid = $foruminfo[forumid]
AND sticky = 0
$visiblethreads
$globalignore
$limitothers
$hook_query_where
");
EDIT: These fixes, among others for bugs that I JUST discovered today, will be included in the next release 1.1.0.