65
I got one
Array type options such as multiple selection not working in mytabs block settings.
Durgis and Marcan fix this error by this code but I don't know the right place inside mytabs .. should be in /admin/block.php or somewhere.
if ( isset($options) && (count($options) > 0) ) {
for ( $i = 0; $i < count($options); $i++ ) {
if (is_array($options[$i])) {
$options[$i] = implode(',', $options[$i]);
}
}
$options = implode('|', $options);
$myblock->setVar('options', $options);
}