Localisation updates for core messages from translatewiki.net (2009-07-22 23:12 UTC)
[lhc/web/wiklou.git] / maintenance / populateLogSearch.php
1 <?php
2 /**
3 * Makes the required database updates for populating the
4 * log_search table retroactively
5 *
6 * @file
7 * @ingroup Maintenance
8 */
9
10 require_once 'commandLine.inc';
11 require_once 'populateLogSearch.inc';
12
13 $db =& wfGetDB( DB_MASTER );
14 if ( !$db->tableExists( 'log_search' ) ) {
15 echo "log_search does not exist\n";
16 exit( 1 );
17 }
18
19 migrate_log_params( $db );