Jump to content

Moderation broken in 2.2.03.176 when using sh404sef


Alejandro

Recommended Posts

In this version of JReviews we developed a way to generate sef urls for site links from the administration which is missing from Joomla. This  allowed us to simplify a lot of the code and will be very useful going forward. Unfortunately, the functionality breaks with the current version of sh404sef. We've been in touch with them and they have very kindly agreed to include a fix in their next release 2.1.5.375.

 

For those needing a fix now, a bit different from the final one, but it also works, edit the /plugins/system/shsef.php file and modify this function below so the beginning looks like this:

 

  function onAfterInitialise() {
    $mainframe = &JFactory::getApplication();

    // Fix for JReviews administration conflict
    if ($mainframe->isAdmin() && JRequest::getVar('option') == 'com_jreviews') {
        return;
    }

Link to comment
×
×
  • Create New...