Index: trunk/phase3/includes/db/Database.php |
— | — | @@ -2445,7 +2445,12 @@ |
2446 | 2446 | * @param $fname String: calling function name |
2447 | 2447 | */ |
2448 | 2448 | function listTables( $prefix = null, $fname = 'DatabaseBase::listTables' ) { |
2449 | | - throw new MWException( 'DatabaseBase::listTables is not implemented in descendant class' ); |
| 2449 | + global $IP; |
| 2450 | + //throw new MWException( 'DatabaseBase::listTables is not implemented in descendant class' ); |
| 2451 | + $tables = file_get_contents( "$IP/maintenance/tables.sql" ); |
| 2452 | + preg_match_all('/create table \/\*_\*\/([a-z0-9_]*)/i', $tables, $matches, PREG_PATTERN_ORDER); |
| 2453 | + |
| 2454 | + return $matches[1]; |
2450 | 2455 | } |
2451 | 2456 | |
2452 | 2457 | /** |