From 17619e6b543c2e137cf5e369e85e222d0dc191fd Mon Sep 17 00:00:00 2001 From: quix0r Date: Sat, 7 Nov 2009 17:56:56 +0000 Subject: [PATCH] Yet another fix for missing 'def_refid' in install phase --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index c727a3bf64..29bbc8280e 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -3192,7 +3192,7 @@ function determineReferalId () { } // Is the record valid? - if (($found === false) || (!isUserDataValid())) { + if ((($found === false) || (!isUserDataValid())) && (isConfigEntrySet('def_refid'))) { // No, then reset referal id $GLOBALS['refid'] = getConfig('def_refid'); } // END - if -- 2.39.5