deliciousbrains / wp-migrate-db

WordPress plugin that exports your database, does a find and replace on URLs and file paths, then allows you to save it to your computer.
https://wordpress.org/plugins/wp-migrate-db/
341 stars 515 forks source link

Fix retrieval of table name in get_table_row_count #96

Open blessingefkt opened 5 years ago

blessingefkt commented 5 years ago

The keys of results from Information schema are uppercase. $result['table_name'] is undefined. The correct key is $result['TABLE_NAME'].