From 1d9986711ebba0df9e931a8a790f106a9e922682 Mon Sep 17 00:00:00 2001 From: ralph Date: Mon, 26 Nov 2012 17:17:10 -0400 Subject: [PATCH] Adding fix for incomplete Installation loading. --- gulliver/system/class.bootstrap.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gulliver/system/class.bootstrap.php b/gulliver/system/class.bootstrap.php index ded3741cc..71f26ab1e 100644 --- a/gulliver/system/class.bootstrap.php +++ b/gulliver/system/class.bootstrap.php @@ -469,6 +469,10 @@ class Bootstrap * return true if the file exists, otherwise false. */ public function isPMUnderUpdating($setFlag = 2) { + if (!defined('PATH_DATA')) { + return false; + } + $fileCheck = PATH_DATA . "UPDATE.dat"; if ($setFlag == 0) { if (file_exists ( $fileCheck )) {