2 small improvements on Module and AccueilModules

This commit is contained in:
Chouchen
2010-10-07 15:57:02 +00:00
parent 3574fc102c
commit d610c66d75
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<?php
function __autoload($class)
{
$BASE_DIR = '/homez.9/shikiryu/www/test/trunk3/';
$BASE_DIR = $_SERVER['DOCUMENT_ROOT'].'/test/trunk3/'; // à modifier selon la configuration souhaitée
set_include_path($BASE_DIR);
$path = 'modules/'.$class;
if(file_exists($path . DIRECTORY_SEPARATOR . ucfirst($class) . '.php') || file_exists($BASE_DIR . $path . DIRECTORY_SEPARATOR . ucfirst($class) . '.php')){