summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-26 09:32:15 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-26 09:32:15 +0000
commite473168106effa75c4080c6b0216c5c9befe42d3 (patch)
treed4de74ef11f4944538a2fecb7d7565a67f141372 /includes
parent0d86b33282d1d73d8c084cf5a6ec92de8b8260cc (diff)
downloadbrdo-e473168106effa75c4080c6b0216c5c9befe42d3.tar.gz
brdo-e473168106effa75c4080c6b0216c5c9befe42d3.tar.bz2
- We don't need to sanitize stuff on input.
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 1154b84ae..404da154b 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -1101,7 +1101,6 @@ function ip_address() {
$remote_ip = $ip_array[0];
}
}
- // Store the satnized version in the static variable
- $remote_ip = check_plain($remote_ip);
+
return $remote_ip;
}