Ok with my really bad PHP knowledge this is what I came up with:
First I changed current_page to varchar(50) because 20 characters was not long enough for some of my pages.
Then I added the code by line 56 of online.php:
if ((@$lang_online[$user_data['current_page']]) == '')
{
$lang_online[$user_data['current_page']] = "<a href=\"http://www.website.com/".$user_data['current_page']."\">".$user_data['current_page']."</a>";
echo"\t\t\t\t\t".'<td>'.$lang_online[$user_data['current_page']].'</td>'."\n";
}
else
echo"\t\t\t\t\t".'<td>'.$lang_online[$user_data['current_page']].'</td>'."\n";
I realize it's really ugly but it gets the job done. If you have any ideas for some nicer/cleaner code please share
Ignore everything I just wrote I managed to get it all working Thanks for the great mod!