skin을 삭제하므로, unfont()도 삭제

This commit is contained in:
2018-03-24 22:05:15 +09:00
parent 157ecdbf2a
commit 0d4c3db333
2 changed files with 0 additions and 31 deletions
-9
View File
@@ -8,15 +8,6 @@ function getFont($str) {
return $str;
}
function unfont($str) {
$str = str_replace("<font color=cyan>", "", $str);
$str = str_replace("<font color=limegreen>", "", $str);
$str = str_replace("<font color=magenta>", "", $str);
$str = str_replace("<font color=red>", "", $str);
$str = str_replace("</font>", "", $str);
return $str;
}
function SQ2DQ($str) {
return str_replace("'", "&#039;", $str);
}