X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fremoveip_functions.php;h=84cf2ce3ae04d2b9a90e62d7bb77767636725e5f;hb=885637e9f61f315ba051500061ec193ebc937f7b;hp=938e2169028fe284ec81b8830727940868ff29b0;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/libs/removeip_functions.php b/inc/libs/removeip_functions.php index 938e216902..84cf2ce3ae 100644 --- a/inc/libs/removeip_functions.php +++ b/inc/libs/removeip_functions.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Spezielle Funktion fuer removeip-Erweiterung * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,14 +38,14 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // "Getter" for anonymous remote IP number function GET_ANONYMOUS_REMOTE_ADDR ($remoteAddr) { // Is config enabled? - if (getConfig('removeip_anon_ip') == "Y") { + if (getConfig('removeip_anon_ip') == 'Y') { // Switch way do we like? switch (getConfig('anonymous_ip')) { case "127.0.0.1": // mod_removeip style @@ -54,7 +54,7 @@ function GET_ANONYMOUS_REMOTE_ADDR ($remoteAddr) { break; case "RANDOM": // Pseudo-random IP number - $remoteAddr = mt_rand(1,254).".".mt_rand(0,254).".".mt_rand(0,254).".".mt_rand(1,254); + $remoteAddr = mt_rand(1,254).'.'.mt_rand(0,254).'.'.mt_rand(0,254).'.'.mt_rand(1,254); break; } // END - switch } // END - if @@ -65,7 +65,7 @@ function GET_ANONYMOUS_REMOTE_ADDR ($remoteAddr) { // "Getter" for anonymous remote hostname function GET_ANONYMOUS_REMOTE_HOST ($remoteHost) { // Is config enabled? - if (getConfig('removeip_anon_host') == "Y") { + if (getConfig('removeip_anon_host') == 'Y') { // Set anon hostname $remoteHost = "localhost.localnet"; } // END - if @@ -76,9 +76,9 @@ function GET_ANONYMOUS_REMOTE_HOST ($remoteHost) { // "Getter" for anonymous user agent function GET_ANONYMOUS_USER_AGENT ($userAgent) { // Is config enabled? - if (getConfig('removeip_anon_ua') == "Y") { + if (getConfig('removeip_anon_ua') == 'Y') { // Set anon user agent - $userAgent = "-"; + $userAgent = '-'; } // END - if // Return it @@ -87,9 +87,9 @@ function GET_ANONYMOUS_USER_AGENT ($userAgent) { // "Getter" for anonymous referer function GET_ANONYMOUS_REFERER ($referer) { // Is config enabled? - if (getConfig('removeip_anon_ref') == "Y") { + if (getConfig('removeip_anon_ref') == 'Y') { // Set anon user agent - $referer = "-"; + $referer = '-'; } // END - if // Return it @@ -101,10 +101,10 @@ function REMOVEIP_ADD_INFOS () { $anonymity = 0; // Is some data anonymized? - if (getConfig('removeip_anon_ip') == "Y") $anonymity++; - if (getConfig('removeip_anon_host') == "Y") $anonymity++; - if (getConfig('removeip_anon_ua') == "Y") $anonymity++; - if (getConfig('removeip_anon_ref') == "Y") $anonymity++; + if (getConfig('removeip_anon_ip') == 'Y') $anonymity++; + if (getConfig('removeip_anon_host') == 'Y') $anonymity++; + if (getConfig('removeip_anon_ua') == 'Y') $anonymity++; + if (getConfig('removeip_anon_ref') == 'Y') $anonymity++; // Calculate anonymity level $level = round($anonymity / 4 * 3); @@ -151,7 +151,7 @@ function FILTER_ADD_ANONYMITY_NOTICE ($data) { $content = $data; // Extension removeip activated? - if ((EXT_IS_ACTIVE("removeip")) && (getConfig('removeip_'.strtolower($data['access_level']).'_show') == "Y")) { + if ((EXT_IS_ACTIVE('removeip')) && (getConfig('removeip_'.strtolower($data['access_level']).'_show') == 'Y')) { // Add anoymity/privacy infos $content['content'] .= REMOVEIP_ADD_INFOS()."
\n"; } // END - if