Example #1
0
 function actionSelect()
 {
     if (empty($_GET['id'])) {
         raptor_error("Trying to select character in cabinet with no id");
     }
     $check = Database::GetOne("characters", array("_id" => Database::toId($_GET['id'])));
     if ($check['player'] == $_SESSION['id']) {
         if ($check['ban'] >= time()) {
             die('<script>alert("Вы были заблокированы \\n\\n Причина: ' . $check['ban_reason'] . '"); location.href = "/";</script>');
         } else {
             $_SESSION['cid'] = $_GET['id'];
             die('<script>location.href = "/p";</script>');
         }
     } else {
         raptor_error("Bad character id");
         echo '<script>alert("Ошибка при выборе персонажа");</script>';
     }
 }
function toId($string)
{
    return Database::toId($string);
}