Make sure this commits too
[lhc/web/wiklou.git] / maintenance / populateLogUsertext.php
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.
7 *
8 * @file
9 * @ingroup Maintenance
10 */
11
12 require_once 'commandLine.inc';
13 require_once 'populateLogUsertext.inc';
14
15 $db =& wfGetDB( DB_MASTER );
16
17 populate_logusertext( $db );