2006-07-18 21:38:54 +00:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
2019-06-04 17:13:51 +02:00
|
|
|
// | This file is part of Piwigo. |
|
2006-07-18 21:38:54 +00:00
|
|
|
// | |
|
2019-06-04 17:13:51 +02:00
|
|
|
// | For copyright and license information, please view the COPYING.txt |
|
|
|
|
// | file that was distributed with this source code. |
|
2006-07-18 21:38:54 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2007-03-16 06:15:27 +00:00
|
|
|
// Recursive call
|
|
|
|
$url = '../';
|
2006-07-18 21:38:54 +00:00
|
|
|
header( 'Request-URI: '.$url );
|
|
|
|
header( 'Content-Location: '.$url );
|
|
|
|
header( 'Location: '.$url );
|
|
|
|
exit();
|
|
|
|
?>
|