예제 #1
0
파일: user_c.php 프로젝트: Diaosir/ziku
 public function updateUserAuthority($id)
 {
     $this->authority(10);
     $authority = Util::fetch_post('authority');
     $user_table = new UserTable();
     $user_table->update_authority($id, $authority);
     Util::go_back();
 }