Translated using Weblate (Polish)
[phpmyadmin.git] / url.php
blob897f3529b9dcc278d6840fafb28fb292660e4058
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * URL redirector to avoid leaking Referer with some sensitive information.
6 * @package PhpMyAdmin
7 */
9 /**
10 * Gets core libraries and defines some variables
12 define('PMA_MINIMUM_COMMON', True);
13 require_once './libraries/common.inc.php';
15 if (! PMA_isValid($_GET['url'])
16 || ! preg_match('/^https?:\/\/[^\n\r]*$/', $_GET['url'])
17 ) {
18 header('Location: ' . $cfg['PmaAbsoluteUri']);
19 } else {
20 header('Location: ' . $_GET['url']);
22 die();