Apply live hack from Wikimedia code base: profiling point around SVN version lookup
[lhc/web/wiklou.git] / includes / ImageQueryPage.php
index c49b487..8948ddc 100644 (file)
@@ -25,19 +25,20 @@ class ImageQueryPage extends QueryPage {
                if( $num > 0 ) {
                        $gallery = new ImageGallery();
                        $gallery->useSkin( $skin );
-                       
+
                        # $res might contain the whole 1,000 rows, so we read up to
                        # $num [should update this to use a Pager]
                        for( $i = 0; $i < $num && $row = $dbr->fetchObject( $res ); $i++ ) {
                                $image = $this->prepareImage( $row );
-                               if( $image instanceof Image )
-                                       $gallery->add( $image, $this->getCellHtml( $row ) );
+                               if( $image ) {
+                                       $gallery->add( $image->getTitle(), $this->getCellHtml( $row ) );
+                               }
                        }
-                       
+
                        $out->addHtml( $gallery->toHtml() );
                }
        }
-       
+
        /**
         * Prepare an image object given a result row
         *
@@ -48,10 +49,10 @@ class ImageQueryPage extends QueryPage {
                $namespace = isset( $row->namespace ) ? $row->namespace : NS_IMAGE;
                $title = Title::makeTitleSafe( $namespace, $row->title );
                return ( $title instanceof Title && $title->getNamespace() == NS_IMAGE )
-                       ? new Image( $title )
+                       ? wfFindFile( $title )
                        : null;
        }
-       
+
        /**
         * Get additional HTML to be shown in a results' cell
         *
@@ -64,4 +65,4 @@ class ImageQueryPage extends QueryPage {
 
 }
 
-?>
+