We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exploited names cannot have their bans deleted/unbanned.
Having the ability to unban every banned player.
Cannot unban the exploited name user:
<!-- a legit player's ban --> <a href="#" onclick="RemoveBan('18133', '?????????????????', '', 'Lost', 0, false);return false;" target="_self"><img src="images/delete.png" alt="" style="vertical-align:middle" border="0"> Delete Ban </a> <!-- an exploited name's ban --> <a href="#" onclick="RemoveBan('18135', '?????????????????', '', '// heaven.gg - ', 0, false);return false;" target="_self"><img src="images/delete.png" alt="" style="vertical-align:middle" border="0"> Delete Ban </a>
Escape special characters in names? (or even add it into StripQuotes)
StripQuotes
function StripQuotes($str) { $str = str_replace("'", "", $str); $str = str_replace('"', "", $str); return $str; }
to
function StripQuotes($str) { $str = str_replace("'", "", $str); $str = str_replace('"', "", $str); $str = trim(preg_replace('/\s+/', ' ', $str)); return $str; }
No clue. It requires a cheat in-game. Possibly \n in a name?
\n
The text was updated successfully, but these errors were encountered:
Groruk
No branches or pull requests
Exploited names cannot have their bans deleted/unbanned.
Expected Behavior
Having the ability to unban every banned player.
Current Behavior
Cannot unban the exploited name user:
Possible Solution
Escape special characters in names? (or even add it into
StripQuotes
)to
Steps to Reproduce (for bugs)
No clue. It requires a cheat in-game. Possibly
\n
in a name?Your Environment
The text was updated successfully, but these errors were encountered: