mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 08:52:21 +00:00
PHPCI
This commit is contained in:
@@ -70,7 +70,7 @@ $config['url_suffix'] = '';
|
||||
| than english.
|
||||
|
|
||||
*/
|
||||
$config['language'] = 'de_AT';
|
||||
$config['language'] = 'de-AT';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -509,9 +509,12 @@ $config['proxy_ips'] = '';
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
*/
|
||||
function __autoload($class) {
|
||||
if (substr($class,0,3) !== 'CI_' && substr($class,0,4) !== 'FHC_') {
|
||||
if (file_exists($file = APPPATH . 'core/' . $class . '.php')) {
|
||||
function __autoload($class)
|
||||
{
|
||||
if (substr($class,0,3) !== 'CI_' && substr($class,0,4) !== 'FHC_')
|
||||
{
|
||||
if (file_exists($file = APPPATH . 'core/' . $class . '.php'))
|
||||
{
|
||||
require_once $file;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,13 +97,13 @@ $db['default'] = array(
|
||||
'save_queries' => TRUE
|
||||
);
|
||||
|
||||
$db['wawi'] = array(
|
||||
$db['system'] = array(
|
||||
'dsn' => '',
|
||||
'hostname' => DB_HOST,
|
||||
'username' => DB_USER,
|
||||
'password' => DB_PASSWORD,
|
||||
'username' => 'fhcomplete',
|
||||
'password' => 'fhcomplete',
|
||||
'database' => DB_NAME,
|
||||
'dbschema' => 'wawi',
|
||||
'dbschema' => 'public',
|
||||
'dbdriver' => 'postgre',
|
||||
'dbprefix' => '',
|
||||
'pconnect' => DB_CONNECT_PERSISTENT,
|
||||
|
||||
Reference in New Issue
Block a user