Merge pull request #1030 from ganeshaditya1/actionpanel

Fixes the action panel problem when editing rows in chrome(Bug 4228)
This commit is contained in:
Michal Čihař 2014-03-13 12:05:40 +01:00
commit d33d3a1fb3

View File

@ -2902,7 +2902,8 @@ function PMA_getHtmlForInsertEditRow($url_params, $table_columns,
} // end for
$o_rows++;
$html_output .= ' </tbody>'
. '</table><br />';
. '</table><br />'
. '<div class="clearfloat"></div>';
return $html_output;
}