Open pppery opened 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.
DB_SLAVE
wfGetDB is also (much more recently) deprecated, as is DB_MASTER above, but those haven't been removed yet.
wfGetDB
DB_MASTER
https://github.com/nasa/meza/blob/fabcf0c3e4855f57ddbdcc0635bc8e27421494a8/src/scripts/uniteTheWikis.php#L403
The
DB_SLAVE
constant 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 isDB_MASTER
above, but those haven't been removed yet.