diff options
author | Friendika <info@friendika.com> | 2011-03-08 18:11:36 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-08 18:11:36 -0800 |
commit | 041f3ca774b07e404c5a9eea6e42c9875d444387 (patch) | |
tree | 12135053f4924ba2a10cc55d9aa3db11c2ebb596 | |
parent | c40944fc86d4c53f32563dc8685c0026ac4ee641 (diff) | |
download | volse-hubzilla-041f3ca774b07e404c5a9eea6e42c9875d444387.tar.gz volse-hubzilla-041f3ca774b07e404c5a9eea6e42c9875d444387.tar.bz2 volse-hubzilla-041f3ca774b07e404c5a9eea6e42c9875d444387.zip |
detect empty .htconfig.php - in case permissions need to be set on it in order to install
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | index.php | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ set_time_limit(0); define ( 'BUILD_ID', 1039 ); -define ( 'FRIENDIKA_VERSION', '2.10.0909' ); +define ( 'FRIENDIKA_VERSION', '2.10.0910' ); define ( 'DFRN_PROTOCOL_VERSION', '2.1' ); define ( 'EOL', "<br />\r\n" ); @@ -19,11 +19,11 @@ $a = new App; /** * * Load the configuration file which contains our DB credentials. - * Ignore errors. If the file doesn't exist, we are running in installation mode. + * Ignore errors. If the file doesn't exist or is empty, we are running in installation mode. * */ -$install = ((file_exists('.htconfig.php')) ? false : true); +$install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true); @include(".htconfig.php"); |