AP_Update_Helper::check_old_meta_table_exists()
Description #
Check if old ap_meta table exists.
Source #
File: admin/update.php
public function check_old_meta_table_exists() { global $wpdb; if ( $wpdb->prefix . 'ap_meta' === $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}ap_meta'" ) ) { $this->meta_table_exists = true; } }
Expand full source code Collapse full source code View on GitHub: admin/update.php:57
Add your comment