7 lines
244 B
PHP
7 lines
244 B
PHP
<?php
|
|
ini_set("display_errors", 1);
|
|
|
|
include_once './_common.php';
|
|
|
|
sql_query("update {$g5['character_table']} set ch_state = '승인' where ch_pass_state = '합격' and ch_state = '대기'");
|
|
goto_url('./character_pass_manager.php?' . $qstr);
|