From: Roland Häder <roland@mxchange.org>
Date: Sat, 2 Feb 2008 13:06:57 +0000 (+0000)
Subject: logical fix
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3c3baa538d0640076210e8f41b72889c309b5497;p=mailer.git

logical fix
---

diff --git a/0.2.1/inc/functions.php b/0.2.1/inc/functions.php
index 58b69a2fd9..0afc09f1c1 100644
--- a/0.2.1/inc/functions.php
+++ b/0.2.1/inc/functions.php
@@ -997,7 +997,7 @@ function LOAD_URL($URL, $addUrlData=true) {
 	$URL = COMPILE_CODE($URL);
 
 	// Add some data to URL if cookies are not accepted
-	if ((!defined('__COOKIES')) || (!__COOKIES) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
+	if (((!defined('__COOKIES')) || (!__COOKIES)) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
 
 	// Probe for bot from search engine
 	if ((eregi("spider", getenv('HTTP_USER_AGENT'))) || (eregi("bot", getenv('HTTP_USER_AGENT'))) || (eregi("spider", getenv('HTTP_USER_AGENT')))) {