1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-04-26 14:09:22 +03:00
ifhub.club/index.php

26 lines
754 B
PHP
Raw Permalink Normal View History

<?php
2008-09-21 09:36:57 +03:00
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
error_reporting(E_ALL);
2008-09-21 09:36:57 +03:00
ini_set('display_errors', 1);
2008-09-21 09:36:57 +03:00
header('Content-Type: text/html; charset=utf-8');
header('X-Powered-By: LiveStreet CMS');
2008-09-21 09:36:57 +03:00
require_once(dirname(__FILE__) . '/bootstrap/start.php');
2009-07-26 16:43:16 +03:00
$oRouter = Router::getInstance();
2014-09-05 08:55:04 +03:00
$oRouter->Exec(isset($aRouterParams) ? $aRouterParams : array());