Alejandro Posted July 18, 2008 at 02:51 PM Share Posted July 18, 2008 at 02:51 PM The page stops loading and throws a fatal error when jReviews is used with iJoomla Magazine. To fix this problem, edit the following function as shown in /com_jreviews/s2framework/basics.php. This will be changed in the next version of jReviews. if(!function_exists('stripslashes_deep')) { function stripslashes_deep($value) { if (is_array($value)) { $return = array_map('stripslashes_deep', $value); return $return; } elseif(is_object($value)) { // We don't process objects! return $value; } else { $return = stripslashes($value); return $return; } } } Link to comment
barkleyandpaws Posted December 17, 2008 at 01:27 PM Share Posted December 17, 2008 at 01:27 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Alejandro Posted December 17, 2008 at 06:33 PM Author Share Posted December 17, 2008 at 06:33 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
barkleyandpaws Posted December 17, 2008 at 06:45 PM Share Posted December 17, 2008 at 06:45 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts