]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix INSTALLDIR use in common.php
authorEvan Prodromou <evan@prodromou.name>
Sat, 17 May 2008 17:34:24 +0000 (13:34 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sat, 17 May 2008 17:34:24 +0000 (13:34 -0400)
I was using $INSTALLDIR instead of INSTALLDIR

darcs-hash:20080517173424-84dde-6fe6df2e710f1a19db97a93682f41cf01034952f.gz

lib/common.php

index c45b91b60f3b77292b444920ea1f0d06275c2100..3e33896a10a162c6594bb0876122154f39c920b5 100644 (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',