From 041f3ca774b07e404c5a9eea6e42c9875d444387 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 8 Mar 2011 18:11:36 -0800 Subject: [PATCH] detect empty .htconfig.php - in case permissions need to be set on it in order to install --- boot.php | 2 +- index.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 6bd78b87d5..d3380a395b 100644 --- a/boot.php +++ b/boot.php @@ -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', "
\r\n" ); diff --git a/index.php b/index.php index bbd2c81cd6..01d8eb2a13 100644 --- a/index.php +++ b/index.php @@ -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");