Skip to content

v3.2.2 - Critical Hotfix

Choose a tag to compare

@maitpatni maitpatni released this 22 Mar 14:08
· 1 commit to main since this release

Critical Hotfix

Activation Fatal Error (FIXED)

  • Root cause found: check_db_version() was calling Broodle_Engage_Logger::create_tables() but that static method doesn't exist
  • The actual create_tables() method is on the main Broodle_Engage_Connector class 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_notifications but actual table is broodle_engage_logs
  • Fixed uninstall to drop correct table name

Files Changed

- broodle-engage-connector.php (check_db_version fix)
- uninstall.php (table name fix)