건국 등 문자열 입력 변경

This commit is contained in:
2018-06-25 00:46:07 +09:00
parent b534da34ad
commit 6147e207a1
2 changed files with 21 additions and 16 deletions
+3 -15
View File
@@ -44,11 +44,7 @@ $comStr = EncodeCommand($fourth, $third, $double, $command);
// 건국
if($command == 46) {
$name = htmlspecialchars($name);
$name = StringUtil::removeSpecialCharacter($name);
$name = StringUtil::subStringForWidth($name, 0, 18);
$name = WebUtil::htmlPurify($name);
$name = StringUtil::textStrip($name);
$name = StringUtil::neutralize($name);
if($name == "") { $name = "무명"; }
$db->update('general', [
@@ -72,11 +68,7 @@ if($command == 53) {
$me = MYDB_fetch_array($result);
if($me['level'] >= 5) {
$nationname = htmlspecialchars($nationname);
$nationname = StringUtil::removeSpecialCharacter($nationname);
$nationname = StringUtil::subStringForWidth($nationname, 0, 18);
$nationname = WebUtil::htmlPurify($nationname);
$nationname = StringUtil::textStrip($nationname);
$nationname = StringUtil::neutralize($nationname, 18);
if($nationname == "") { $nationname = "무명"; }
$db->update('general', [
@@ -102,11 +94,7 @@ if($command == 61) {
$me = MYDB_fetch_array($result);
if($me['level'] >= 5) {
$note = htmlspecialchars($note);
$note = StringUtil::removeSpecialCharacter($note);
$note = StringUtil::subStringForWidth($note, 0, 90);
$note = WebUtil::htmlPurify($note);
$note = StringUtil::textStrip($note);
$note = StringUtil::neutralize($note, 90);
$query = "update diplomacy set reserved='{$note}' where me='{$me['nation']}' and you='$double'";
MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");