MyBB Community Forums

Full Version: "unknown location"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where can I add some "known" locations?
By default all locations for the online page are found in online.php

find
case "portal":
			$locationname = $lang->viewing_portal;
			break;
add ur onw code above, for any of user pages, just do something like

case "urpage":
			$locationname = "text here";
			break;

also u need to add it a sec time

find
case "nopermission":
			$user['activity'] = "nopermission";
			break;

above it add ur modified one


last but not least !! this thing never worked neither for me, or many others, however this is the only way Toungue

regards
Great.