diff --git a/application/config/config.php.sample b/application/config/config.php.sample index 9dc5d49..9495bcd 100755 --- a/application/config/config.php.sample +++ b/application/config/config.php.sample @@ -134,7 +134,7 @@ $config['db_auth_host'] = '127.0.0.1'; // Database host address. $config['db_auth_port'] = '3306'; // Database port. $config['db_auth_user'] = 'root'; // Database username. $config['db_auth_pass'] = 'root'; // Database password. -$config['db_auth_dbname'] = 'realmd'; // Database name for your auth/realmd database. +$config['db_auth_dbname'] = 'auth'; // Database name for your auth/realmd database. // Realmlist Configuration - Configure the connection details for each realm's character database. $config['realmlists'] = array( @@ -145,7 +145,7 @@ $config['realmlists'] = array( 'db_port' => "3306", // MySQL Host Port 'db_user' => "root", // MySQL username 'db_pass' => 'root', // MySQL password - 'db_name' => "realm1_characters" // Characters database name + 'db_name' => "characters" // Characters database name ) ); diff --git a/application/include/core_handler.php b/application/include/core_handler.php index 2900083..d3cdc0c 100644 --- a/application/include/core_handler.php +++ b/application/include/core_handler.php @@ -1,12 +1,10 @@