thaider / Tweeki

MediaWiki skin based on Twitter's Bootstrap
http://tweeki.kollabor.at
Other
128 stars 31 forks source link

Replace calls to removed/deprecated functions #268

Closed n1kPLV closed 7 months ago

n1kPLV commented 7 months ago

As pointed out in #267, WikiPage::factory was removed in MediaWiki 1.41. However calls to can easily be replaced with calls to WikiPageFactory::newFromTitle.

While fixing this, I noticed warnings because Hooks::run was called, which is deprecated since MediaWiki 1.35, and might be removed soon. This also has a new "drop-in replacement" with HookContainer::run. So I implemented that fix too.

Closes #267