From d77b51803a7d26a20cf9aeabbd5263c18d73263d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 2 Apr 2010 09:38:34 +0200 Subject: [PATCH] Allow to configure tracking table (bug #2966752). --- setup/lib/forms.inc.php | 1 + setup/lib/messages.inc.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/setup/lib/forms.inc.php b/setup/lib/forms.inc.php index 6d47e2e6c..534b8ca35 100644 --- a/setup/lib/forms.inc.php +++ b/setup/lib/forms.inc.php @@ -62,6 +62,7 @@ $forms['Server_pmadb'] = array('Servers' => array(1 => array( 'pdf_pages' => 'pma_pdf_pages', 'column_info' => 'pma_column_info', 'history' => 'pma_history', + 'tracking' => 'pma_tracking', 'designer_coords' => 'pma_designer_coords'))); $forms['Import_export'] = array( 'UploadDir', diff --git a/setup/lib/messages.inc.php b/setup/lib/messages.inc.php index 9cd1884a7..c734010ca 100644 --- a/setup/lib/messages.inc.php +++ b/setup/lib/messages.inc.php @@ -274,6 +274,8 @@ $strSetupServers_hide_db_desc = __('Hide databases matching regular expression ( $strSetupServers_hide_db_name = __('Hide databases'); $strSetupServers_history_desc = __('Leave blank for no SQL query history support, suggested: [kbd]pma_history[/kbd]'); $strSetupServers_history_name = __('SQL query history table'); +$strSetupServers_tracking_desc = __('Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/kbd]'); +$strSetupServers_tracking_name = __('SQL query tracking table'); $strSetupServers_host_desc = __('Hostname where MySQL server is running'); $strSetupServers_host_name = __('Server hostname'); $strSetupServers_LogoutURL_name = __('Logout URL');