From eca20557e2fa191b67b83f1de354e007034418b3 Mon Sep 17 00:00:00 2001 From: Aditya Sastry Date: Sat, 8 Mar 2014 18:09:06 +0530 Subject: [PATCH] Fixes the action panel problem when editing rows in chrome(Bug 4228) The action panel which is a fieldset is rendered differently in chrome. Also the rows are listed in a random fashion unlike in firefox where they are sorted by the primary key. I fixed this problem by enclosing the rows in a div tag with float left and clear both styles. Signed-off-by: Aditya Sastry --- libraries/insert_edit.lib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index 80e79a41c5..62a5f068b6 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -2902,7 +2902,8 @@ function PMA_getHtmlForInsertEditRow($url_params, $table_columns, } // end for $o_rows++; $html_output .= ' ' - . '
'; + . '
' + . '
'; return $html_output; }