In online.php:
Find:
PHP Code:
$userinfo[activity] = 'buddy';
Add below it:
PHP Code:
} else if ($token1 == 'action=notepad') {
$userinfo[activity] = 'notepad';
Find:
PHP Code:
case 'addprivateevent';
$userinfo[where] = "Adding Private Event to the <a href='calendar.php?s=$session[sessionhash]'>Calendar</a>";
break;
Add below it:
PHP Code:
case 'notepad':
$userinfo[where] = "Editing their <a href='member2.php?s=$session[sessionhash]&action=notepad'>vBpad</a>";
break;
Just noticed a bug! In online.php, the line "case 'addprivateevent';" should be "case 'addprivateevent':"