Index: trunk/phase3/includes/Article.php |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | */ |
62 | 62 | public static function newFromID( $id ) { |
63 | 63 | $t = Title::newFromID( $id ); |
64 | | - return $t == null ? null : new Article( $t ); |
| 64 | + return $t == null ? null : new static( $t ); |
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |