diff --git a/phpgwapi/inc/class.common.inc.php b/phpgwapi/inc/class.common.inc.php index 96e55c9b94..e10955c3b5 100644 --- a/phpgwapi/inc/class.common.inc.php +++ b/phpgwapi/inc/class.common.inc.php @@ -453,11 +453,11 @@ @param $selected ? @param $fontsize optional */ - function create_tabs($tabs, $selected, $fontsize = '') + function create_tabs($tabs, $selected) { - $output_text = '
'; + $output_text .= ' | '; } - $output_text .= ' | ' . $fs . $tab[1]['label'] . $fse . ' | '; if ($i == count($tabs)) { - $output_text .= ''; + $output_text .= ' | '; } else { - $output_text .= ' | '; + $output_text .= ' | '; } } else { if ($i == 1) { - $output_text .= ' | '; + $output_text .= ' | '; } - $output_text .= ' | ' . $fs . $tab[1]['label'] . $fse . ' | '; if (($i + 1) == $selected) { - $output_text .= ''; + $output_text .= ' | '; } elseif ($i == $selected || $i != count($tabs)) { - $output_text .= ' | '; + $output_text .= ' | '; } elseif ($i == count($tabs)) { if ($i == $selected) { - $output_text .= ' | '; + $output_text .= ' | '; } else { - $output_text .= ' | '; + $output_text .= ' | '; } } else { if ($i != count($tabs)) { - $output_text .= ' | '; + $output_text .= ' | '; } } } |