Make newFromID() inherit correctly (ImagePage/CategoryPage...) by using Late Static...
authorAaron Schulz <aaron@users.mediawiki.org>
Thu, 5 Nov 2009 08:55:18 +0000 (08:55 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Thu, 5 Nov 2009 08:55:18 +0000 (08:55 +0000)
includes/Article.php

index 105425a..5065280 100644 (file)
@@ -60,7 +60,7 @@ class Article {
         */
        public static function newFromID( $id ) {
                $t = Title::newFromID( $id );
-               return $t == null ? null : new Article( $t );
+               return $t == null ? null : new static( $t );
        }
 
        /**