Fix typos (bug #1424923).

This commit is contained in:
Michal Čihař
2006-02-06 11:02:09 +00:00
parent 2f468cd3c2
commit 2a16078c94
2 changed files with 5 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2006-02-06 Michal Čihař <michal@cihar.com>
* scripts/setup.php: Fix typos (bug #1424923).
2006-02-05 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries/mult_submits.inc.php, server_databases.php: array to string
conversion (sorry to late :-( ), use of $_REQUEST

View File

@@ -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!');