From c8cfbaff7aba50ae2ee42a050cdb7862b4c7eb70 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Thu, 22 Mar 2007 15:48:49 +0000 Subject: [PATCH] now really store it ... --- libraries/relation.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 30c2e835e..aae7c97fe 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -750,9 +750,9 @@ function PMA_setHistory($db, $table, $username, $sqlquery) } $_SESSION['sql_history'][$key] = array( - 'db' => '', - 'table' => '', - 'sqlquery' => '', + 'db' => $db, + 'table' => $table, + 'sqlquery' => $sqlquery, ); if (count($_SESSION['sql_history']) > $GLOBALS['cfg']['QueryHistoryMax']) {