From: Roland Häder Date: Sat, 7 Nov 2009 17:56:56 +0000 (+0000) Subject: Yet another fix for missing 'def_refid' in install phase X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=6dc08780fad335a2248a335ccfe023f10fa92078 Yet another fix for missing 'def_refid' in install phase --- 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