Skip to content
Snippets Groups Projects

[RTKO] default volatile on setupOpac

Merged Sebastien ANDRE requested to merge fix_default_volatile_on_setup into master
All threads resolved!
Compare and Show latest version
1 file
+ 12
10
Preferences
Compare changes
+ 12
10
@@ -27,24 +27,26 @@ ini_set('display_errors', 1);
ini_set('memory_limit', '3072M');
date_default_timezone_set('Europe/Paris');
set_include_path( realpath(dirname(__FILE__)).'/../library'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/../library/digital_resources'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/../library/templates'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/library/Class'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/../library/Class'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/library/'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/../library/ZendAfi'
set_include_path(realpath(dirname(__FILE__)) . '/../library'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/../library/digital_resources'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/../library/templates'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/library/Class'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/../library/Class'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/library/'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/../library/ZendAfi'
. PATH_SEPARATOR . './library/storm/src'
. PATH_SEPARATOR . './library/storm/tests'
. PATH_SEPARATOR . './library/storm/zf/library'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/../application/modules'
. PATH_SEPARATOR . realpath(dirname(__FILE__)).'/application/modules'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/../application/modules'
. PATH_SEPARATOR . realpath(dirname(__FILE__)) . '/application/modules'
. PATH_SEPARATOR . realpath(dirname(__FILE__))
. PATH_SEPARATOR . get_include_path());
// Includes de base
include_once "local.php";
include_once( "fonctions/fonctions.php");
include_once "fonctions/fonctions.php";
include_once 'library/storm/src/Storm/Test/ModelTestCase.php';
include_once 'tests/library/Class/ModelTestCase.php';
require_once "Zend/Loader.php";
require_once "library/startup.php";