From 97686ac0aaecf381150b75907c414a4859dbc2ca Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Fri, 27 Apr 2007 09:41:09 +0000 Subject: [PATCH] oops --- includes/Image.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Image.php b/includes/Image.php index 88b49d5311..0c40c92eb8 100644 --- a/includes/Image.php +++ b/includes/Image.php @@ -789,9 +789,9 @@ class Image function thumbUrl( $width, $subdir = 'thumb' ) { $name = $this->thumbName( array( 'width' => $width ) ); if ( strval( $name ) !== '' ) { - return $this->thumbUrlFromName( $name, $subdir ); + return array( false, $this->thumbUrlFromName( $name, $subdir ) ); } else { - return false; + return array( false, false ); } } -- 2.20.1