changed hardcoded location of ams_lib with location difined in configuration

This commit is contained in:
shubham_meena 2014-03-27 16:50:26 +05:30
parent 7e6cf7c213
commit ccd5355f48
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,6 @@
//load required pages and turn error reporting on/off
error_reporting(E_ALL);
ini_set('display_errors', 'on');
require_once( '../../ams_lib/libinclude.php' );
if (!file_exists('../is_installed')) {
//if is_installed doesnt exist run setup
require( 'installer/libsetup.php' );
@ -24,6 +23,7 @@ if (!file_exists('../is_installed')) {
//if config exists then include it
require( '../config.php' );
}
require_once( $AMS_LIB'/libinclude.php' );
session_start();
//Running Cron?

View file

@ -34,7 +34,7 @@
if (!isset($_POST['function'])) {
//require the pages that are being needed.
require_once( '../config.default.php' );
require_once( '../../ams_lib/libinclude.php' );
require_once( $AMS_LIB.'/libinclude.php' );
ini_set( "display_errors", true );
error_reporting( E_ALL );