okie, I've just did a minor fix to it. I use query_first() instead of query(), and besides, it only shows if the users have a note.
*update hack*
To update, look for:
PHP Code:
// show usernote in postbit
$usernote = $DB_site->query("
SELECT COUNT(*) AS usernoteid FROM " . TABLE_PREFIX . "usernote
WHERE userid = $post[userid]");
$totalnotes = mysql_result($usernote, 0, 'usernoteid');
REPLACE WITH:
PHP Code:
// show usernote in postbit
$usernote = $DB_site->query_first("
SELECT COUNT(*) AS usernote FROM " . TABLE_PREFIX . "usernote
WHERE userid = $post[userid]");
$totalnotes = $usernote['usernote'];