@@ -1181,7 +1181,8 @@ class System
|
|||||||
self::$debug = $config['debug'];
|
self::$debug = $config['debug'];
|
||||||
|
|
||||||
if ($config['proxy_pass'] != '') {
|
if ($config['proxy_pass'] != '') {
|
||||||
$config['proxy_pass'] = G::decrypt($config['proxy_pass'], 'proxy_pass');
|
$G = new G();
|
||||||
|
$config['proxy_pass'] = $G->decrypt($config['proxy_pass'], 'proxy_pass');
|
||||||
}
|
}
|
||||||
|
|
||||||
return $config;
|
return $config;
|
||||||
|
|||||||
@@ -277,6 +277,11 @@ define( 'PML_WSDL_URL', PML_SERVER . '/syspmLibrary/en/green/services/wsdl' );
|
|||||||
define( 'PML_UPLOAD_URL', PML_SERVER . '/syspmLibrary/en/green/services/uploadProcess' );
|
define( 'PML_UPLOAD_URL', PML_SERVER . '/syspmLibrary/en/green/services/uploadProcess' );
|
||||||
define( 'PML_DOWNLOAD_URL', PML_SERVER . '/syspmLibrary/en/green/services/download' );
|
define( 'PML_DOWNLOAD_URL', PML_SERVER . '/syspmLibrary/en/green/services/download' );
|
||||||
|
|
||||||
|
//Call Gulliver Classes
|
||||||
|
Bootstrap::LoadThirdParty("smarty/libs", "Smarty.class");
|
||||||
|
|
||||||
|
//Loading the autoloader libraries feature
|
||||||
|
Bootstrap::registerSystemClasses();
|
||||||
|
|
||||||
$config = Bootstrap::getSystemConfiguration();
|
$config = Bootstrap::getSystemConfiguration();
|
||||||
|
|
||||||
@@ -303,12 +308,6 @@ session_start();
|
|||||||
//$e_all = $config['debug'] ? $e_all : $e_all & ~ E_NOTICE;
|
//$e_all = $config['debug'] ? $e_all : $e_all & ~ E_NOTICE;
|
||||||
//$e_all = E_ALL & ~ E_DEPRECATED & ~ E_STRICT & ~ E_NOTICE & ~E_WARNING;
|
//$e_all = E_ALL & ~ E_DEPRECATED & ~ E_STRICT & ~ E_NOTICE & ~E_WARNING;
|
||||||
|
|
||||||
//Call Gulliver Classes
|
|
||||||
Bootstrap::LoadThirdParty("smarty/libs", "Smarty.class");
|
|
||||||
|
|
||||||
//Loading the autoloader libraries feature
|
|
||||||
Bootstrap::registerSystemClasses();
|
|
||||||
|
|
||||||
G::LoadSystem('inputfilter');
|
G::LoadSystem('inputfilter');
|
||||||
$filter = new InputFilter();
|
$filter = new InputFilter();
|
||||||
$config['display_errors'] = $filter->validateInput($config['display_errors']);
|
$config['display_errors'] = $filter->validateInput($config['display_errors']);
|
||||||
|
|||||||
Reference in New Issue
Block a user