From 23e7a9a22dddb35bb0aefe6d722be88e59717083 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 25 May 2010 03:50:56 +0000 Subject: [PATCH] MINOR Geoip class no longer extends Object, as it's not necessary (from r100409) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@105562 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- integration/Geoip.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/Geoip.php b/integration/Geoip.php index 06ffcf49a..a3fe73305 100755 --- a/integration/Geoip.php +++ b/integration/Geoip.php @@ -5,7 +5,7 @@ * @package sapphire * @subpackage misc */ -class Geoip extends Object { +class Geoip { public static $default_country_code = false; @@ -378,4 +378,4 @@ class Geoip extends Object { return $dropdown; } } -?> \ No newline at end of file +?>