From 0ee48b374729c5eeb58bf48ec9a9f0d3a8827eb9 Mon Sep 17 00:00:00 2001 From: Shinjiman Date: Sat, 27 Jun 2009 11:52:27 +0000 Subject: [PATCH] fix regression in r52476, point to the correct GD library home page or PHP GD module page. --- includes/specials/SpecialVersion.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialVersion.php b/includes/specials/SpecialVersion.php index 85165fa8e4..2fdab968b7 100644 --- a/includes/specials/SpecialVersion.php +++ b/includes/specials/SpecialVersion.php @@ -138,7 +138,7 @@ class SpecialVersion extends SpecialPage { } else { if( function_exists( 'gd_info' ) ) { $gdInfo = gd_info(); - if ( strstr( $gdInfo['GD Version'], 'bundled' ) !== '' ) { + if ( strstr( $gdInfo['GD Version'], 'bundled' ) != false ) { $gd_URL = 'http://www.php.net/gd'; } else { -- 2.20.1