SemanticMediaWiki / SemanticSignup

Allows adding additional fields to the user registration form, which get placed on the new users' user page, as well as stored semantically.
https://www.mediawiki.org/wiki/Extension:SemanticSignup
Other
6 stars 3 forks source link

Removal of deprecated SpecialPageFactory #34

Open DannyS712 opened 4 years ago

DannyS712 commented 4 years ago

Please note that the old SpecialPageFactory, deprecated in mediawiki 1.32, will likely be removed in 1.36. Its methods still have calls from this extension.

The replacement is to use MediaWikiServices::getInstance()->getSpecialPageFactory(), and use the new factory's methods. However, since this extension supports versions of MediaWiki that predate the addition of the new factory in 1.32, you will likely need to add conditional logic based on if the MediaWiki\SpecialPage\SpecialPageFactory class exists.

See https://phabricator.wikimedia.org/T246142 for more.

kghbln commented 4 years ago

Thanks for the notification.