Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.2.6
-
Fix Version/s: 4.2.7
-
Component/s: WordPress Integration
-
Labels:
Description
If the logged in user experiences a fatal error in one of the CiviCRM pages of the WordPress admin, the civicrm/templates/CRM/common/fatal.tpl template is used to display an error. WordPress takes the output of the CiviCRM plugin and embeds it in a page created by WordPress. Unfortunately the fatal.tpl template creates a full page of output including html headers, causing the WordPress admin menu to break.
A possible solution may be to change line 27 from:
{if $config->userFramework != 'Joomla'}to:
{if $config->userFramework != 'Joomla' && $config->userFramework != 'WordPress'}