I noticed a problem with JD-WP modules in the latest release of Joomla. It seems that Joomla is stricter with regards to arrays now. With the current release of JD-WP, any JD-WP module displayed on a non JD-WP page will result in an array error in file \components\com_jd-wp\wp-includes\locale.php.
The solution is on the bugtracker for JD-WP, though I’m sure (judging by forum posts on the matter) that most folk haven’t looked. So here’s the fix, lifted directly from bugtracker. Add one line of code before the first $month declaration…
BEFORE :
// The Months
$month[’01′] = __(’January’);
$month[’02′] = __(’February’);
$month[’03′] = __(’March’);
AFTER :
// The Months
$month = array(); // shumisha
$month[’01′] = __(’January’);
$month[’02′] = __(’February’);
$month[’03′] = __(’March’);
Social Media