djflux / meza

Setup an enterprise MediaWiki server with simple commands
MIT License
0 stars 0 forks source link

Fix legacy load for SemanticDrillDown and TalkRight #19

Closed djflux closed 2 years ago

djflux commented 2 years ago

When debugging another problem, it was discovered that SemanticDrillDown and TalkRight are using legacy_load = true and doesn't need to anymore. From a requestDebug=1 after loading irdwiki data into a meza rhel8 load:

[warning] Deprecated PHP entry point used for SemanticDrilldown extension. Please use wfLoadExtension instead, see https://www.mediawiki.org/wiki/Extension_registration for more details. [Called from require_once in /opt/htdocs/mediawiki/extensions/SemanticDrilldown/SemanticDrilldown.php at line 21]
[warning] Deprecated PHP entry point used for FooBar extension. Please use wfLoadExtension instead, see https://www.mediawiki.org/wiki/Extension_registration for more details. [Called from require_once in /opt/htdocs/mediawiki/extensions/TalkRight/TalkRight.php at line 9]

Fix these warnings.

djflux commented 2 years ago

Commit be80b25 resolves this one.