From 83feef193b1830f47682249a3d44707e40157fc1 Mon Sep 17 00:00:00 2001 From: Edward Cheng Date: Fri, 21 Feb 2014 09:31:05 +0800 Subject: [PATCH] Fix bug Sorry, the commit i've submitted(d3e8fc3a2ab1ebb979cf3ee4e5cc72d70f2c7493) has a bug. Fix: Move clear float div to the end of stream. Signed-off-by: Edward Cheng --- libraries/navigation/NavigationTree.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index bb5f2ba15b..a82e5058fb 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -951,7 +951,6 @@ class PMA_NavigationTree $retval .= htmlspecialchars($node->real_name); $retval .= ""; } - $retval .= '
'; } else { $retval .= "{$node->name}"; } @@ -959,6 +958,7 @@ class PMA_NavigationTree $retval .= ""; } $retval .= $node->getHtmlForControlButtons(); + $retval .= '
'; $wrap = true; } else { $node->visible = true;