Index: trunk/extensions/LocalisationUpdate/LocalisationUpdate.php |
— | — | @@ -42,4 +42,4 @@ |
43 | 43 | $wgAutoloadClasses['QuickArrayReader'] = $dir . 'QuickArrayReader.php'; |
44 | 44 | |
45 | 45 | $wgHooks['LoadExtensionSchemaUpdates'][] = 'LocalisationUpdate::schemaUpdates'; |
46 | | - |
| 46 | +$wgHooks['ParserTestTables'][] = 'LocalisationUpdate::parserTestTables'; |
Index: trunk/extensions/LocalisationUpdate/LocalisationUpdate.class.php |
— | — | @@ -490,6 +490,12 @@ |
491 | 491 | $wgExtNewFields[] = array( 'localisation_file_hash', 'lfh_timestamp', "$dir/patch-lfh_timestamp.sql" ); |
492 | 492 | return true; |
493 | 493 | } |
| 494 | + |
| 495 | + public static function parserTestTables( &$tables ) { |
| 496 | + $tables[] = 'localisation'; |
| 497 | + $tables[] = 'localisation_file_hash'; |
| 498 | + return true; |
| 499 | + } |
494 | 500 | |
495 | 501 | public static function myLog( $log ) { |
496 | 502 | if ( isset( $_SERVER ) && array_key_exists( 'REQUEST_METHOD', $_SERVER ) ) { |