fix INSTALLDIR use in common.php

I was using $INSTALLDIR instead of INSTALLDIR

darcs-hash:20080517173424-84dde-6fe6df2e710f1a19db97a93682f41cf01034952f.gz
This commit is contained in:
Evan Prodromou 2008-05-17 13:34:24 -04:00
parent 5b9982ee3b
commit 1efea523f2
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
$config['db'] =
array('database' => 'YOU HAVE TO SET THIS IN config.php',
'schema_location' => $INSTALLDIR . '/classes',
'class_location' => $INSTALLDIR . '/classes',
'schema_location' => INSTALLDIR . '/classes',
'class_location' => INSTALLDIR . '/classes',
'require_prefix' => 'classes/',
'class_prefix' => '',
'db_driver' => 'MDB2',