Hmm, John, you didn't put anything about file edits in functions_online.php.

Here's the necessary <sp?> file edits so articles will work in 'who's online'
Find in Includes/Functions_online.php:
PHP Code:
case 'bugs':
$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'Bugs'); // Don't report 'bugs' as needing to be translated please :p
break;
Add BELOW:
PHP Code:
case 'article':
$userinfo['action'] = 'Viewing the <a href=\"article.php?$session[sessionurl]\">Articles</a>';
break;
Find:
PHP Code:
case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;
Add BELOW:
PHP Code:
case 'article.php':
$userinfo['activity'] = 'article';
break;
Save & Upload Includes/Functions_online.php
All done.