Scusatemi per la domanda un pò banale, nella Mod leaderboard 1.1.11 o trovato quasto script all'interno della cartella includes.
Codice: Seleziona tutto
/* function block to check for valid gamertag
*/
function gamertag_check($gamertag = false, $gamer_uid = 0)
{
global $db, $user, $phpbb_root_path, $phpEx;
$gamer_message = false;
$gamer_uid = (int) $gamer_uid;
// user trying to use characters in xbox name
if (!empty($gamertag) && (strpos($gamertag, '"') !== false || strpos($gamertag, '"') !== false || !preg_match('#^[a-zA-Z0-9\ ]+$#u', $gamertag)))
{
$gamer_message = true;
return $gamer_message;
}
$tag = (!empty($gamertag)) ? strtolower(str_replace(' ', '%20', $gamertag)) : '';