v3.2.2 - Critical Hotfix
Critical Hotfix
Activation Fatal Error (FIXED)
- Root cause found:
check_db_version()was callingBroodle_Engage_Logger::create_tables()but that static method doesn't exist - The actual
create_tables()method is on the mainBroodle_Engage_Connectorclass as a private method - Fixed: Changed to
$this->create_tables() - This caused the "Class not found" error on activation
Uninstall Fix
- Wrong table name: Uninstall was trying to drop
broodle_engage_notificationsbut actual table isbroodle_engage_logs - Fixed uninstall to drop correct table name
Files Changed
- broodle-engage-connector.php (check_db_version fix)
- uninstall.php (table name fix)