nasa / meza

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

Uses DB_SLAVE constant #54

Open pppery opened 4 months ago

pppery commented 4 months ago

https://github.com/nasa/meza/blob/fabcf0c3e4855f57ddbdcc0635bc8e27421494a8/src/scripts/uniteTheWikis.php#L403

        $dbr = wfGetDB( DB_SLAVE );

The DB_SLAVEconstant was removed in MediaWiki 1.34. I assume this script is obsolete and should be deleted, but if not it needs to be updated.

wfGetDB is also (much more recently) deprecated, as is DB_MASTER above, but those haven't been removed yet.