2002-12-21 15:58:04 +01:00
|
|
|
<?php
|
2009-02-11 21:44:00 +01:00
|
|
|
/* Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
2002-12-21 15:58:04 +01:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2002-12-21 15:58:04 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2011-08-01 01:19:04 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-12-21 15:58:04 +01:00
|
|
|
*/
|
2002-12-21 16:10:19 +01:00
|
|
|
|
2008-04-20 06:31:31 +02:00
|
|
|
/**
|
2009-02-11 21:44:00 +01:00
|
|
|
* \file htdocs/public/index.php
|
|
|
|
|
* \ingroup core
|
|
|
|
|
* \brief A redirect page to an error
|
|
|
|
|
* \author Laurent Destailleur
|
|
|
|
|
*/
|
2002-12-24 00:40:37 +01:00
|
|
|
|
2012-08-22 23:24:21 +02:00
|
|
|
require '../master.inc.php';
|
2002-12-21 15:58:04 +01:00
|
|
|
|
2009-02-11 21:44:00 +01:00
|
|
|
header("Location: ".DOL_URL_ROOT.'/public/error-404.php');
|
2002-12-24 00:40:37 +01:00
|
|
|
|
2002-12-21 15:58:04 +01:00
|
|
|
?>
|