코드 내의 불필요한 모든 history 제거

This commit is contained in:
2018-03-02 02:02:16 +09:00
parent ea638b8221
commit bebc7580bd
16 changed files with 97 additions and 86 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ if($admin['npcmode'] != 1) {
";
MYDB_query($query, $connect) or Error("join_post ".MYDB_error($connect),"");
$query = "select no,name,history from general where user_id='$id'";
$query = "select no,name from general where user_id='$id'";
$result = MYDB_query($query, $connect) or Error("join_post ".MYDB_error($connect),"");
$me = MYDB_fetch_array($result);