mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
12 lines
204 B
PHP
12 lines
204 B
PHP
|
<?
|
||
|
if (!isset($_REQUEST['postid']) || !is_number($_REQUEST['postid'])) {
|
||
|
error(0);
|
||
|
}
|
||
|
|
||
|
$URL = Comments::get_url_query((int)$_REQUEST['postid']);
|
||
|
if (!$URL) {
|
||
|
error(0);
|
||
|
}
|
||
|
header("Location: $URL");
|
||
|
die();
|