From f0aa9131d1f4136fcb368a03fbfa488499abd381 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Wed, 4 May 2011 13:45:01 +0000 Subject: [PATCH] fix bug on failed install of new instances --- setup/inc/class.setup_detection.inc.php | 2 +- setup/inc/class.setup_process.inc.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/inc/class.setup_detection.inc.php b/setup/inc/class.setup_detection.inc.php index dfb0d134c9..0fa61a3e19 100755 --- a/setup/inc/class.setup_detection.inc.php +++ b/setup/inc/class.setup_detection.inc.php @@ -56,7 +56,7 @@ class setup_detection $GLOBALS['egw_setup']->set_table_names(); - if($GLOBALS['egw_setup']->table_exist(array($GLOBALS['egw_setup']->applications_table))) + if($GLOBALS['egw_setup']->table_exist(array($GLOBALS['egw_setup']->applications_table),true)) { /* one of these tables exists. checking for post/pre beta version */ if($GLOBALS['egw_setup']->applications_table != 'applications') diff --git a/setup/inc/class.setup_process.inc.php b/setup/inc/class.setup_process.inc.php index 9febe658d9..a47f61fb1b 100755 --- a/setup/inc/class.setup_process.inc.php +++ b/setup/inc/class.setup_process.inc.php @@ -20,6 +20,7 @@ * R upgrade in pRogress * C upgrade Completed successfully * D Dependency failure + * P Post-install dependency failure * F upgrade Failed * V Version mismatch at end of upgrade (Not used, proposed only) * M Missing files at start of upgrade (Not used, proposed only)