An easy addition to include Sonia's weather hack in the Who's Online module;
Open
includes/functions_online.php and find;
PHP Code:
case 'manageattachment':
$userinfo['action'] = $vbphrase['managing_attachments'];
break;
Directly after it add;
PHP Code:
case 'weather':
$userinfo['action'] = 'Viewing Weather Forecast';
$userinfo['where'] = "<a href=\"profile.php?$session[sessionurl]do=weather\">Weather Forecast</a>";
break;
Then find;
PHP Code:
else if ($values['do'] == 'editattachments')
{
$userinfo['activity'] = 'attachments';
}
Directly after it add;
PHP Code:
else if ($values['do'] == 'weather' OR $values['do'] == 'places' OR $values['do'] == 'forecast')
{
$userinfo['activity'] = 'weather';
}
Save and upload... that's it.