66
Nice bug!!!
Let me see, go to mytabs/admin/block.php and replace at line 29
le="color: #000000"><?php if (isset($_POST['options'])){ $block->setVar('options', implode('|', $_POST['options'])); }
with:
le="color: #000000"><?php if ( isset($_POST['options']) && (count($_POST['options']) > 0) ) { $options = $_POST['options']; for ( $i = 0; $i < count($options); $i++ ) { if (is_array($options[$i])) { $options[$i] = implode(',', $options[$i]); } } $block->setVar('options', implode('|', $options)); }
Thanks!