1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-03-12 05:58:44 +00:00
2022-09-18 12:58:35 +08:00

16 lines
302 B
PHP

<?php
if (!Auth::check()) {
become403Page(UOJLocale::get('need login'));
}
if (!isNormalUser($myUser)) {
become403Page();
}
if (!validateUInt($_GET['id']) || !($blog = queryBlog($_GET['id']))) {
become404Page();
}
redirectTo(HTML::blog_url($blog['poster'], '/post/'.$_GET['id']));
?>