You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If gp_upgrade_db() runs for the first time gp_upgrade_data() gets called with false for the $db_version parameter, thus the query for $db_version < 190 runs.
Don't call gp_upgrade_data() if get_option( 'gp_db_version' ) returns false
Remove the unused global import for $wpdb; from gp_upgrade_db()
Remove the $db_version < 190 query since this will never run. The default version for all installs is 940.
The text was updated successfully, but these errors were encountered:
If
gp_upgrade_db()
runs for the first timegp_upgrade_data()
gets called withfalse
for the$db_version
parameter, thus the query for$db_version < 190
runs.gp_upgrade_data()
ifget_option( 'gp_db_version' )
returns false$wpdb;
fromgp_upgrade_db()
$db_version < 190
query since this will never run. The default version for all installs is940
.The text was updated successfully, but these errors were encountered: