7 lines
171 B
PHP
7 lines
171 B
PHP
|
|
<?php
|
||
|
|
header('Content-Type: text/html; charset=utf-8');
|
||
|
|
if(!defined('APPLICATION_VERSION')){
|
||
|
|
die("Permission denied!");
|
||
|
|
}
|
||
|
|
$route::call($module, $controller, $action);
|