mirror of
https://github.com/e107inc/e107.git
synced 2025-08-13 10:04:35 +02:00
index.php is now system entry point, front page detection moved to index controller; various stabillity fixes and url admin interface improvements; htaccess template modfied to meet entry point changes; front page preference values (Front Page admin page) prefixed with 'url:' and 'route:' now accepted and recognized; full backward compatibility so far.
This commit is contained in:
@@ -1,5 +1,16 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2011 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
* System error controller
|
||||
*
|
||||
* $URL$
|
||||
* $Id$
|
||||
*/
|
||||
class core_system_error_controller extends eController
|
||||
{
|
||||
function preAction()
|
||||
|
@@ -1,10 +1,20 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2011 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
* System index controller
|
||||
*
|
||||
* $URL$
|
||||
* $Id$
|
||||
*/
|
||||
class core_system_index_controller extends eController
|
||||
{
|
||||
/**
|
||||
* Temporary redirect to site Index
|
||||
* XXX - move the index.php Front page detection to index/index/index, make index.php the entry point and _forward here
|
||||
* Redirect to site Index
|
||||
*/
|
||||
public function actionIndex()
|
||||
{
|
||||
|
Reference in New Issue
Block a user