Sorry, the commit i've submitted(d3e8fc3a2a) has a bug.
Fix: Move clear float div to the end of stream.

Signed-off-by: Edward Cheng <c4150221@gmail.com>
This commit is contained in:
Edward Cheng 2014-02-21 09:31:05 +08:00
parent 296e25ccfa
commit 83feef193b

View File

@ -951,7 +951,6 @@ class PMA_NavigationTree
$retval .= htmlspecialchars($node->real_name);
$retval .= "</a>";
}
$retval .= '<div class="clearfloat"></div>';
} else {
$retval .= "{$node->name}";
}
@ -959,6 +958,7 @@ class PMA_NavigationTree
$retval .= "</i>";
}
$retval .= $node->getHtmlForControlButtons();
$retval .= '<div class="clearfloat"></div>';
$wrap = true;
} else {
$node->visible = true;