(bug 8440) Add API support for new blocking flag, also fix defaults so anywhere else...
[lhc/web/wiklou.git] / includes / ImageQueryPage.php
index 93f090a..da9b6fd 100644 (file)
@@ -4,8 +4,7 @@
  * Variant of QueryPage which uses a gallery to output results, thus
  * suited for reports generating images
  *
- * @package MediaWiki
- * @addtogroup SpecialPage
+ * @ingroup SpecialPage
  * @author Rob Church <robchur@gmail.com>
  */
 class ImageQueryPage extends QueryPage {
@@ -30,8 +29,8 @@ class ImageQueryPage extends QueryPage {
                        # $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 ) );
                                }
                        }
 
@@ -49,7 +48,7 @@ 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;
        }
 
@@ -64,5 +63,3 @@ class ImageQueryPage extends QueryPage {
        }
 
 }
-
-?>