From 2a16078c94d69396c98173c0658b06d22367a863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 6 Feb 2006 11:02:09 +0000 Subject: [PATCH] Fix typos (bug #1424923). --- ChangeLog | 3 +++ scripts/setup.php | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a621a7f39..1ab69ad80 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2006-02-06 Michal Čihař + * scripts/setup.php: Fix typos (bug #1424923). + 2006-02-05 Sebastian Mendel * libraries/mult_submits.inc.php, server_databases.php: array to string conversion (sorry to late :-( ), use of $_REQUEST diff --git a/scripts/setup.php b/scripts/setup.php index 7a2bc9953..9b324d81d 100644 --- a/scripts/setup.php +++ b/scripts/setup.php @@ -952,7 +952,7 @@ function show_tabs_form($defaults = array()) { array('Default tab for server', 'DefaultTabServer', 'Tab that is displayed when entering server', array('main.php', 'server_databases.php', 'server_status.php', 'server_variables.php', 'server_privileges.php', 'server_processlist.php')), array('Default tab for database', 'DefaultTabDatabase', 'Tab that is displayed when entering database', array('db_details_structure.php', 'db_details.php', 'db_search.php', 'db_operations.php')), array('Default tab for table', 'DefaultTabTable', 'Tab that is displayed when entering table', array('tbl_properties_structure.php', 'sql.php', 'tbl_properties.php', 'tbl_select.php', 'tbl_change.php')), - array('Use lighter tabs', 'LightTab', 'If you want simpler tabs enable this', FALSE), + array('Use lighter tabs', 'LightTabs', 'If you want simpler tabs enable this', FALSE), ), 'Configure tabs', 'Choose how you want tabs to work.', @@ -1533,7 +1533,7 @@ switch ($action) { case 'lay_left_real': if (isset($_POST['submit_save'])) { - $vals = grab_values('LeftFrameLight:bool;LeftFrameDBTree:bool;LeftFrameDBSeparator;LeftFrameTableSeparator;LeftFrameTableLevel:int;LeftDisplayLogo:bool;LeftDusplayServers:bool;LeftPointerEnable:bool'); + $vals = grab_values('LeftFrameLight:bool;LeftFrameDBTree:bool;LeftFrameDBSeparator;LeftFrameTableSeparator;LeftFrameTableLevel:int;LeftDisplayLogo:bool;LeftDisplayServers:bool;LeftPointerEnable:bool'); $err = FALSE; if (isset($vals['LeftFrameTableLevel']) && $vals['LeftFrameTableLevel'] < 1) { message('error', 'Invalid value for maximum table nesting level!');