PHP3 fixes
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2002-07-25 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
|
* libraries/sqlparser.lib.php3: PHP3 parse errors fixed,
|
||||||
|
|
||||||
2002-07-24 Robin Johnson <robbat2@users.sourceforge.net>
|
2002-07-24 Robin Johnson <robbat2@users.sourceforge.net>
|
||||||
* config.inc.php3:
|
* config.inc.php3:
|
||||||
- Fix code to work around CSS bug in Mozilla/Konqueror with 'inherit'
|
- Fix code to work around CSS bug in Mozilla/Konqueror with 'inherit'
|
||||||
|
@@ -101,7 +101,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
|||||||
6 => '<>',
|
6 => '<>',
|
||||||
7 => '>=',
|
7 => '>=',
|
||||||
8 => '>>',
|
8 => '>>',
|
||||||
9 => '||',
|
9 => '||'
|
||||||
);
|
);
|
||||||
$allpunct_list_pair_size = 10; //count($allpunct_list_pair);
|
$allpunct_list_pair_size = 10; //count($allpunct_list_pair);
|
||||||
$quote_list = "\'\"\`";
|
$quote_list = "\'\"\`";
|
||||||
@@ -444,7 +444,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
|||||||
'list_tbl' => array(),
|
'list_tbl' => array(),
|
||||||
'list_tbl_alias' => array(),
|
'list_tbl_alias' => array(),
|
||||||
'list_col' => array(),
|
'list_col' => array(),
|
||||||
'list_col_alias' => array(),
|
'list_col_alias' => array()
|
||||||
);
|
);
|
||||||
$subresult_empty = $subresult;
|
$subresult_empty = $subresult;
|
||||||
$seek_queryend = FALSE;
|
$seek_queryend = FALSE;
|
||||||
@@ -757,9 +757,10 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
|||||||
$str = '.' . $classname . ' {';
|
$str = '.' . $classname . ' {';
|
||||||
if($value != '') {
|
if($value != '') {
|
||||||
$str .= $property . ': ' . $value . '; ';
|
$str .= $property . ': ' . $value . '; ';
|
||||||
}
|
}
|
||||||
$str .= '}' . "\n";
|
$str .= '}' . "\n";
|
||||||
return $str;
|
|
||||||
|
return $str;
|
||||||
} // end of the "PMA_SQP_buildCssRule()" function
|
} // end of the "PMA_SQP_buildCssRule()" function
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user