fixed warnings and a parse error
This commit is contained in:
@@ -31,7 +31,7 @@ if (isset($btnLDI) && ($textfile != 'none')) {
|
|||||||
|
|
||||||
// Kanji encoding convert appended by Y.Kawada
|
// Kanji encoding convert appended by Y.Kawada
|
||||||
if (function_exists('PMA_kanji_file_conv')) {
|
if (function_exists('PMA_kanji_file_conv')) {
|
||||||
$textfile = PMA_kanji_file_conv($textfile, $knjenc, $xkana);
|
$textfile = PMA_kanji_file_conv($textfile, $knjenc, isset($xkana) ? $xkana : '');
|
||||||
}
|
}
|
||||||
// Formats the data posted to this script
|
// Formats the data posted to this script
|
||||||
$textfile = PMA_sqlAddslashes($textfile);
|
$textfile = PMA_sqlAddslashes($textfile);
|
||||||
|
@@ -66,6 +66,7 @@ if (function_exists('PMA_set_enc_form')) {
|
|||||||
. PMA_set_enc_form(' ')
|
. PMA_set_enc_form(' ')
|
||||||
. ' </td>' . "\n"
|
. ' </td>' . "\n"
|
||||||
. ' </tr>' . "\n";
|
. ' </tr>' . "\n";
|
||||||
|
} // end if
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" align="center"><?php print PMA_showDocuShort('L/O/LOAD_DATA.html'); ?></td>
|
<td colspan="3" align="center"><?php print PMA_showDocuShort('L/O/LOAD_DATA.html'); ?></td>
|
||||||
|
3
sql.php3
3
sql.php3
@@ -265,7 +265,8 @@ else {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// tmpfile remove after convert encoding appended by Y.Kawada
|
// tmpfile remove after convert encoding appended by Y.Kawada
|
||||||
if (function_exists('PMA_kanji_file_conv') && file_exists($textfile)) {
|
if (function_exists('PMA_kanji_file_conv')
|
||||||
|
&& (isset($textfile) && file_exists($textfile))) {
|
||||||
unlink($textfile);
|
unlink($textfile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user