class nowrap was missing; div not allowed here

This commit is contained in:
Marc Delisle
2010-10-09 09:05:54 -04:00
parent 452dce72a2
commit 7d0c11c256
3 changed files with 10 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f
}
if ($include_box) {
$button .= '<div class="nowrap">';
$button .= '<span class="nowrap">';
}
if ($include_icon) {
@@ -120,7 +120,7 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f
}
if ($include_box) {
$button .= '</div>';
$button .= '</span>';
}
return $button;