$elts = explode('_', $function);
array_pop($elts);
$file = '/' . strtolower(implode(DIRECTORY_SEPARATOR, $elts)).'.php';
- @include IPF::$settings['ipf_path'] . $file;
- @include IPF::$settings['project_path'] . $file;
+ @include_once IPF::$settings['ipf_path'] . $file;
+ @include_once IPF::$settings['project_path'] . $file;
if (!function_exists($function))
throw new IPF_Exception('Impossible to load the function: '.$function.' in '.$file);
}