Master Slider Bug
-
There seems to be a bug in /admin/includes/classes/class-msp-admin-assets.php. While creating new custom slider. The editing page is not loaded properly due to js error due to empty variable (var _MSP_DATA =) . To resolve this issue line 150 of this script should be:
$msp_data = empty( $slider_data[ 'params' ] ) ? '""' : '"' . $slider_data[ 'params' ] . '"';
instead of:
$msp_data = empty( $slider_data[ 'params' ] ) ? '' : '"' . $slider_data[ 'params' ] . '"';
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Master Slider Bug’ is closed to new replies.