summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 13:34:24 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 13:34:24 -0400
commit1efea523f29a5d7758da28d8bee63c31a97c03c4 (patch)
tree87a58aacbac07caec51b9ce5c4c501e13a026937 /lib
parent5b9982ee3b99ef9c1db54da09720488a485224d0 (diff)
fix INSTALLDIR use in common.php
I was using $INSTALLDIR instead of INSTALLDIR darcs-hash:20080517173424-84dde-6fe6df2e710f1a19db97a93682f41cf01034952f.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common.php b/lib/common.php
index c45b91b60..3e33896a1 100644
--- a/lib/common.php
+++ b/lib/common.php
@@ -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',