CC-3297: Depend on zendframework and php-pear as external packages

-DB dependency should now be externalized
This commit is contained in:
Martin Konecny 2012-02-06 15:10:03 -05:00
parent 58b4576ae1
commit c229097470
1 changed files with 3 additions and 3 deletions

View File

@ -52,9 +52,9 @@ $CC_CONFIG['smembSequence'] = $CC_CONFIG['smembTable'].'_id';
// Add libs to the PHP path
$old_include_path = get_include_path();
set_include_path('.'.PATH_SEPARATOR.$CC_CONFIG['pearPath']
.PATH_SEPARATOR.$CC_CONFIG['zendPath']
.PATH_SEPARATOR.$old_include_path);
set_include_path('.'
.PATH_SEPARATOR.$CC_CONFIG['zendPath']
.PATH_SEPARATOR.$old_include_path);
class Config {
public static function loadConfig($p_path) {