Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.4.4
-
Fix Version/s: 4.4.5
-
Component/s: CiviEvent, Joomla Integration
-
Labels:None
Description
Several civicrm event registrations failed on us with the following error:
Non-static method JApplicationCms::getMenu() should not be called statically
The easy solution is to change:
$menu = JSite::getMenu();
to the following:
$menu = JFactory::getApplication()->getMenu();