Esempio n. 1
0
 /**
  * Check if the given title already is favorited by the user, and if so
  * add favorite on a new title. To be used for page renames and such.
  *
  * @param $ot Title: page title to duplicate entries from, if present
  * @param $nt Title: page title to add favorite on
  */
 public static function duplicateEntries($ot, $nt)
 {
     FavoritedItem::doDuplicateEntries($ot->getSubjectPage(), $nt->getSubjectPage());
     //FavoritedItem::doDuplicateEntries( $ot->getTalkPage(), $nt->getTalkPage() );
 }