From 6b46963367ff4da9a875b03c0df67a98b4d89024 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 2 Apr 2006 03:34:56 +0000 Subject: [PATCH] Applying live hack: some mirrors strip the comment; include a hidden span with the IP to help track them down. --- includes/SpecialVersion.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index 6f9fc27dc1..d6539c9040 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -186,7 +186,8 @@ class SpecialVersion { */ function IPInfo() { $ip = str_replace( '--', ' - ', htmlspecialchars( wfGetIP() ) ); - return "\n"; + return "\n" . + "visited from $ip"; } /** -- 2.20.1