Use title accessor
authorAaron Schulz <aaron@users.mediawiki.org>
Tue, 28 Jun 2011 21:38:04 +0000 (21:38 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Tue, 28 Jun 2011 21:38:04 +0000 (21:38 +0000)
includes/Metadata.php

index 3e5bead..9bf7a61 100644 (file)
@@ -58,7 +58,7 @@ abstract class RdfMetaData {
        protected function basics() {
                global $wgLanguageCode, $wgSitename;
 
-               $this->element( 'title', $this->mArticle->mTitle->getText() );
+               $this->element( 'title', $this->mArticle->getTitle()->getText() );
                $this->pageOrString( 'publisher', wfMsg( 'aboutpage' ), $wgSitename );
                $this->element( 'language', $wgLanguageCode );
                $this->element( 'type', 'Text' );