2002-07-31 Robin Johnson <robbat2@users.sourceforge.net>
tbl_properties_structure.php3 +40: Fix for a warning notice libraries/sqlparser.lib.php3: Fix for another minor formatting quirk
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2002-07-31 Robin Johnson <robbat2@users.sourceforge.net>
|
||||||
|
* tbl_properties_structure.php3 +40: Fix for a warning notice
|
||||||
|
* libraries/sqlparser.lib.php3: Fix for another minor formatting quirk
|
||||||
|
|
||||||
2002-07-31 Marc Delisle <lem9@users.sourceforge.net>
|
2002-07-31 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* lang/thai: update, thanks to Arthit Suriyawongkul
|
* lang/thai: update, thanks to Arthit Suriyawongkul
|
||||||
|
|
||||||
|
@@ -180,10 +180,10 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
|||||||
|
|
||||||
// Checks for MySQL escaping using a \
|
// Checks for MySQL escaping using a \
|
||||||
// And checks for ANSI escaping using the $quotetype character
|
// And checks for ANSI escaping using the $quotetype character
|
||||||
if (PMA_STR_charIsEscaped($sql, $pos)) {
|
if ( ($pos < $len) && PMA_STR_charIsEscaped($sql, $pos)) {
|
||||||
$pos ++;
|
$pos ++;
|
||||||
continue;
|
continue;
|
||||||
} else if (($sql[$pos] == $quotetype) && ($sql[$pos + 1] == $quotetype)) {
|
} else if ( ($pos+1 < $len) && ($sql[$pos] == $quotetype) && ($sql[$pos + 1] == $quotetype)) {
|
||||||
$pos = $pos + 2;
|
$pos = $pos + 2;
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
@@ -553,6 +553,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
|||||||
|
|
||||||
$keywords_with_brackets_1before = array(
|
$keywords_with_brackets_1before = array(
|
||||||
'INDEX',
|
'INDEX',
|
||||||
|
'KEY',
|
||||||
'ON',
|
'ON',
|
||||||
'USING'
|
'USING'
|
||||||
);
|
);
|
||||||
|
@@ -264,7 +264,7 @@ if ($fields_cnt > 20) {
|
|||||||
<!-- Browse links -->
|
<!-- Browse links -->
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
//$sub_part = '_structure';
|
$sub_part = '_structure';
|
||||||
include('./tbl_properties_links.php3');
|
include('./tbl_properties_links.php3');
|
||||||
} // end if ($fields_cnt > 20)
|
} // end if ($fields_cnt > 20)
|
||||||
echo "\n\n";
|
echo "\n\n";
|
||||||
|
Reference in New Issue
Block a user