mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 09:58:41 +00:00
16 lines
389 B
PHP
16 lines
389 B
PHP
<?php
|
|
if (!Auth::check() && UOJConfig::$data['switch']['force-login']) {
|
|
redirectToLogin();
|
|
}
|
|
|
|
if (!isNormalUser($myUser) && UOJConfig::$data['switch']['force-login']) {
|
|
become403Page();
|
|
}
|
|
|
|
if (!validateUInt($_GET['id']) || !($blog = queryBlog($_GET['id']))) {
|
|
become404Page();
|
|
}
|
|
|
|
redirectTo(HTML::blog_url($blog['poster'], '/post/'.$_GET['id'] . ($_GET['sub'] ?: '')));
|
|
?>
|