Файл: Application/system/controllers/admin_languages.php
Строк: 21
<?php
if( !$this->network->id ) {
$this->redirect('home');
}
if( !$this->user->is_logged ) {
$this->redirect('home');
}
$db2->query('SELECT 1 FROM users WHERE iduser="'.$this->user->id.'" AND is_network_admin=1 LIMIT 1');
if( 0 == $db2->num_rows() ) {
$this->redirect('dashboard');
}
/*************************************************************************/
// needed before proceeding
require_once('_all-required-language.php');
$this->load_langfile('global/global.php');
$this->load_langfile('inside/admin.php');
/*************************************************************************/
require_once('_all-required-dashboard-admin.php');
/*************************************************************************/
$D->langDefault = $this->db2->fetch_field('SELECT value FROM settings WHERE word="LANGUAGE"');
/*************************************************************************/
$D->optionactive_admin = 5;
$this->load_template('admin_languages.php');
?>