Avoid using same id="" in more messages

This commit is contained in:
Jakub Vrana 2013-04-16 17:53:53 -07:00
parent 37adf537c9
commit a8947b62b8
2 changed files with 2 additions and 3 deletions

View file

@ -485,10 +485,9 @@ username.form['auth[driver]'].onchange();
*/
function messageQuery($query) {
global $jush;
static $count = 0;
restart_session();
$id = "sql-" . ($count++);
$history = &get_session("queries");
$id = "sql-" . count($history[$_GET["db"]]);
if (strlen($query) > 1e6) {
$query = ereg_replace('[\x80-\xFF]+$', '', substr($query, 0, 1e6)) . "\n..."; // [\x80-\xFF] - valid UTF-8, \n - can end by one-line comment
}

View file

@ -9,7 +9,7 @@ Explain partitions in SQL query (bug #3600150)
Allow loading more data with inline edit (bug #3605531)
Stay on the same page after deleting rows (bug #3605845)
Respect checked tables in export filename (bug #3245464)
Handle max_input_vars
Respect PHP configuration max_input_vars
Open database to a new window after selecting it with Ctrl
Disable autocapitalize in identifiers on mobile browsers
MySQL: Compatibility with MySQL 5.6