Deprecate broken accessor and add a new one
[mediawiki.git] / maintenance / populateLogUsertext.php
blobc775aa549eaffc7ccb089a2a8361c5b51edbccb4
1 <?php
2 /**
3 * Makes the required database updates for Special:ProtectedPages
4 * to show all protected pages, even ones before the page restrictions
5 * schema change. All remaining page_restriction column values are moved
6 * to the new table.
8 * @file
9 * @ingroup Maintenance
12 require_once 'commandLine.inc';
13 require_once 'populateLogUsertext.inc';
15 $db =& wfGetDB( DB_MASTER );
17 populate_logusertext( $db );