tables_to_repair filter-hook . WP 3.0.0
Filters additional database tables to repair.
Usage
add_filter( 'tables_to_repair', 'filter_function_name_4082' ); function filter_function_name_4082( $tables ){ // filter... return $tables; }
- $tables(string[])
- Array of prefixed table names to be repaired.
Where the hook is called
In file:
/wp-admin/maint/repair.php
tables_to_repair
wp-admin/maint/repair.php 94
$tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) );