From 72a9cb2273a220dc6bbeb2a45763694b732a78ab Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 10 May 2010 23:43:04 -0600 Subject: [PATCH] Fix logic, clearer error label --- horde/test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/horde/test.php b/horde/test.php index f590b2424..64170ef09 100644 --- a/horde/test.php +++ b/horde/test.php @@ -147,9 +147,9 @@ if ($app == 'horde') { } } - if (!$init_exception) { + if ($init_exception) { echo '
  • Horde is not correctly configured so no application information can be displayed. Please follow the instructions in horde/docs/INSTALL and ensure horde/config/conf.php and horde/config/registry.php are correctly configured.
  • ' . - '
  • Error message: ' . $e->getMessage() . '
  • '; + '
  • Error: ' . $e->getMessage() . '
  • '; } ?> -- 2.11.0