bug #2973949 SQL History broken (need to revert patch #2899969)

This commit is contained in:
Marc Delisle
2010-04-04 17:30:36 -04:00
2 changed files with 2 additions and 7 deletions

View File

@@ -77,6 +77,8 @@ $Id$
- patch #2979234, bug #2960105 [import] Properly import unicode text from ODS.
- bug #2973280 [export] Proper handling of temporary directory in XLS export.
- bug #2980582 [interface] Properly format server status parameter.
- bug #2973949 [session] SQL History broken (revert patch #2899969),
thanks to Dieter Adriaenssens - ruleant
3.3.1.0 (2010-03-16)
- bug #2941037 [core] Database structure not sorted by table correctly

View File

@@ -294,13 +294,6 @@ if (isset($GLOBALS['show_as_php']) || !empty($GLOBALS['validatequery'])) {
PMA_DBI_query('SET PROFILING=1;');
}
// fisharebest: release the session lock, otherwise we won't be able to run other
// scripts until the query has finished (which could take a very long time).
// Note: footer.inc.php writes debug info to $_SESSION, so debuggers will have to wait.
if (empty($_SESSION['debug'])) {
session_write_close();
}
// Measure query time.
// TODO-Item http://sourceforge.net/tracker/index.php?func=detail&aid=571934&group_id=23067&atid=377411
$querytime_before = array_sum(explode(' ', microtime()));