(bug 737) only use the post-parse link placeholders within replaceInternalLinks().
[lhc/web/wiklou.git] / includes / QueryPage.php
index c453da6..8b75eca 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 /**
  * Contain a class for special pages
+ * @package MediaWiki
  */
 
 /**
@@ -13,6 +14,7 @@ require_once ( 'Feed.php' );
  * we factor out some of the functionality into a superclass, and let
  * subclasses derive from it.
  *
+ * @package MediaWiki
  */
 class QueryPage {
 
@@ -279,7 +281,7 @@ class QueryPage {
        }
 
        function feedDesc() {
-               return wfMsg( 'fromwikipedia' );
+               return wfMsg( 'tagline' );
        }
 
        function feedUrl() {
@@ -293,6 +295,8 @@ class QueryPage {
  * This is a subclass for very simple queries that are just looking for page
  * titles that match some criteria. It formats each result item as a link to
  * that page.
+ *
+ * @package MediaWiki
  */
 class PageQueryPage extends QueryPage {