"fixed warning: explode expects 2. parameter to be string, array given"

This commit is contained in:
Ralf Becker 2010-05-15 13:44:42 +00:00
parent 5973d330fd
commit 3a1412d8fe

View File

@ -85,13 +85,15 @@ class historylog_widget
foreach($type as $n => $t) foreach($type as $n => $t)
{ {
$opt = ''; $opt = '';
if(is_array($t)) { if(is_array($t))
{
$sel_options = $t; $sel_options = $t;
}
list($t,$opt) = explode(':',$t);
if(is_array($sel_options)) {
$t = 'select'; $t = 'select';
} }
else
{
list($t,$opt) = explode(':',$t);
}
$child = etemplate::empty_cell($t,$cell['name']."[$n]",array('readonly' => true,'no_lang' => true,'size' => $opt)); $child = etemplate::empty_cell($t,$cell['name']."[$n]",array('readonly' => true,'no_lang' => true,'size' => $opt));
$child['sel_options'] = $sel_options; $child['sel_options'] = $sel_options;
etemplate::add_child($cell,$child); etemplate::add_child($cell,$child);