Merge pull request woocommerce/woocommerce-admin#773 from woocommerce/fix/771-fatal-on-activation
Do not attempt to run table setup without dependency check first
This commit is contained in:
commit
986c209658
|
@ -98,6 +98,10 @@ register_deactivation_hook( WC_ADMIN_PLUGIN_FILE, 'deactivate_wc_admin_plugin' )
|
|||
* update automatically.
|
||||
*/
|
||||
function wc_admin_init() {
|
||||
if ( ! dependencies_satisfied() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Only create/update tables on init if WP_DEBUG is true.
|
||||
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
|
||||
WC_Admin_Api_Init::create_db_tables();
|
||||
|
|
Loading…
Reference in New Issue