This
SHOULD work

Let me know if not.
OPEN online.php
Remove any journal stuff you added
FIND
PHP Code:
case 'spider':
$userinfo[where] = "Search Engine Spider";
break;
ABOVE that INSERT
PHP Code:
// [BEGIN Edit] Show Who's Journal is being read
case 'journal':
$userid = explode("=", $userinfo[location]);
$username=$DB_site->query("SELECT username FROM user WHERE userid='$userid[2]'");
$username=$DB_site->fetch_array($username);
if (!$username[username]) {
$userinfo[where] = "Viewing <a href='journal.php?s=$session[sessionhash]'>Journals</a>";
} else {
$userinfo[where] = "Viewing Journal of <a href='journal.php?s=$session[sessionhash]&userid=$userid[2]&action=view'>$username[username]</a>";
}
break;
// [END Edit] Show Who's Journal is being read
FIND
PHP Code:
case '/robots.txt':
$userinfo[activity] = 'spider';
break;
ABOVE that INSERT
PHP Code:
// [BEGIN Edit] Show Who's Journal is being read
case 'journal.php':
$userinfo[activity] = 'journal';
break;
// [END Edit] Show Who's Journal is being read