831 |
florian |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
////////////////////////////////////////////////////////////////////////////////
|
|
|
4 |
// //
|
|
|
5 |
// Copyright (C) 2006 Phorum Development Team //
|
|
|
6 |
// http://www.phorum.org //
|
|
|
7 |
// //
|
|
|
8 |
// This program is free software. You can redistribute it and/or modify //
|
|
|
9 |
// it under the terms of either the current Phorum License (viewable at //
|
|
|
10 |
// phorum.org) or the Phorum License that was distributed with this file //
|
|
|
11 |
// //
|
|
|
12 |
// This program is distributed in the hope that it will be useful, //
|
|
|
13 |
// but WITHOUT ANY WARRANTY, without even the implied warranty of //
|
|
|
14 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. //
|
|
|
15 |
// //
|
|
|
16 |
// You should have received a copy of the Phorum License //
|
|
|
17 |
// along with this program. //
|
|
|
18 |
////////////////////////////////////////////////////////////////////////////////
|
|
|
19 |
|
|
|
20 |
// Redirect to another page. This is used for working around an MSIE bug
|
|
|
21 |
// where redirecting to an anchored URL looses the anchor if redirected
|
|
|
22 |
// directly from a script that acts on POST input coming from an
|
|
|
23 |
// enctype="multipart/mixed" form... *sigh*.
|
|
|
24 |
|
|
|
25 |
define('phorum_page', 'redirect');
|
|
|
26 |
|
|
|
27 |
require_once("./common.php");
|
|
|
28 |
|
|
|
29 |
if (isset($PHORUM["args"]["phorum_redirect_to"])) {
|
|
|
30 |
$redir = urldecode($PHORUM["args"]["phorum_redirect_to"]);
|
|
|
31 |
phorum_redirect_by_url($redir);
|
|
|
32 |
} else {
|
|
|
33 |
header("Location: index.php");
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
?>
|