Index: trunk/phase3/includes/Image.php |
— | — | @@ -789,9 +789,9 @@ |
790 | 790 | function thumbUrl( $width, $subdir = 'thumb' ) { |
791 | 791 | $name = $this->thumbName( array( 'width' => $width ) ); |
792 | 792 | if ( strval( $name ) !== '' ) { |
793 | | - return $this->thumbUrlFromName( $name, $subdir ); |
| 793 | + return array( false, $this->thumbUrlFromName( $name, $subdir ) ); |
794 | 794 | } else { |
795 | | - return false; |
| 795 | + return array( false, false ); |
796 | 796 | } |
797 | 797 | } |
798 | 798 | |