23 lines
726 B
PHP
23 lines
726 B
PHP
|
|
<?php
|
|||
|
|
/*---------------------------------------------------+
|
|||
|
|
| HoloCMS - Website and Content Management System
|
|||
|
|
+----------------------------------------------------+
|
|||
|
|
| Copyright <EFBFBD> 2008 Meth0d
|
|||
|
|
+----------------------------------------------------+
|
|||
|
|
| HoloCMS is provided "as is" and comes without
|
|||
|
|
| warrenty of any kind.
|
|||
|
|
+---------------------------------------------------*/
|
|||
|
|
|
|||
|
|
header("location:../index.php");
|
|||
|
|
|
|||
|
|
?>
|
|||
|
|
|
|||
|
|
<html>
|
|||
|
|
<head>
|
|||
|
|
<title>Redirecting...</title>
|
|||
|
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
|||
|
|
<style type="text/css">body { background-color: #e3e3db; text-align: center; font: 11px Verdana, Arial, Helvetica, sans-serif; } a { color: #fc6204; }</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
</body>
|
|||
|
|
</html>
|