1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-03 22:30:01 +00:00

8 lines
176 B
PHP
Raw Normal View History

2016-11-17 10:08:31 +08:00
<?php
if (!validateUInt($_GET['id']) || !($blog = queryBlog($_GET['id']))) {
become404Page();
}
redirectTo(HTML::blog_url($blog['poster'], $_SERVER["REQUEST_URI"]));
?>