mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
14 lines
324 B
PHP
14 lines
324 B
PHP
<?php
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class VileSci_Controller extends FHC_Controller
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
/*if (! $this->getUID() && strncmp(uri_string(), 'system/Login', 11) !== 0)
|
|
redirect(site_url('system/Login/'.uri_string()));*/
|
|
}
|
|
|
|
}
|