Removed FeedItem::getLastMod() and FeedItem::getDBPrefixedTitle() since they are...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 10 Nov 2011 12:09:33 +0000 (12:09 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 10 Nov 2011 12:09:33 +0000 (12:09 +0000)
includes/Feed.php

index ef33c78..3d6b436 100644 (file)
@@ -68,15 +68,6 @@ class FeedItem {
                $this->Comments = $Comments;
        }
 
-       /**
-        * Get the last touched timestamp
-        *
-        * @return String last-touched timestamp
-        */
-       public function getLastMod() {
-               return $this->Title->getTouched();
-       }
-
        /**
         * Encode $string so that it can be safely embedded in a XML document
         *
@@ -120,16 +111,6 @@ class FeedItem {
                return $this->xmlEncode( $this->Title );
        }
 
-       /**
-        * Get the DB prefixed title
-        *
-        * @return String the prefixed title, with underscores and
-        *  any interwiki and namespace prefixes
-        */
-       public function getDBPrefixedTitle() {
-               return $this->Title->getPrefixedDBKey();
-       }
-
        /**
         * Get the URL of this item; already xml-encoded
         *