Merged in shubham_meena/ryzomcore/issue#120 (pull request #60)
changed hardcoded location of ams_lib with location defined in configuration
This commit is contained in:
commit
0a631f5f9f
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,6 @@
|
||||||
//load required pages and turn error reporting on/off
|
//load required pages and turn error reporting on/off
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
ini_set('display_errors', 'on');
|
ini_set('display_errors', 'on');
|
||||||
require_once( '../../ams_lib/libinclude.php' );
|
|
||||||
if (!file_exists('../is_installed')) {
|
if (!file_exists('../is_installed')) {
|
||||||
//if is_installed doesnt exist run setup
|
//if is_installed doesnt exist run setup
|
||||||
require( 'installer/libsetup.php' );
|
require( 'installer/libsetup.php' );
|
||||||
|
@ -24,6 +23,7 @@ if (!file_exists('../is_installed')) {
|
||||||
//if config exists then include it
|
//if config exists then include it
|
||||||
require( '../config.php' );
|
require( '../config.php' );
|
||||||
}
|
}
|
||||||
|
require_once( $AMS_LIB'/libinclude.php' );
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
//Running Cron?
|
//Running Cron?
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
if (!isset($_POST['function'])) {
|
if (!isset($_POST['function'])) {
|
||||||
//require the pages that are being needed.
|
//require the pages that are being needed.
|
||||||
require_once( '../config.default.php' );
|
require_once( '../config.default.php' );
|
||||||
require_once( '../../ams_lib/libinclude.php' );
|
require_once( $AMS_LIB.'/libinclude.php' );
|
||||||
ini_set( "display_errors", true );
|
ini_set( "display_errors", true );
|
||||||
error_reporting( E_ALL );
|
error_reporting( E_ALL );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue