undefined sub-part

This commit is contained in:
Marc Delisle
2002-08-03 00:33:20 +00:00
parent 030ba08696
commit 63d3f86c0f
2 changed files with 10 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ $Source$
* lang/portuguese update, thanks to Lopo Pizarro
* lang/catalan update, thanks to Xavier Navarro
* lang/ukrainian update, thanks to Markijan Baran
* ldi_check.php3: undefined $sub_part
2002-08-01 Robin Johnson <robbat2@users.sourceforge.net>
* scripts/decode_bug.php3:

View File

@@ -29,6 +29,8 @@ if (isset($btnLDI) && ($textfile != 'none')) {
$replace = '';
}
error_reporting(E_ALL);
chmod($textfile, 0644);
// Kanji encoding convert appended by Y.Kawada
if (function_exists('PMA_kanji_file_conv')) {
$textfile = PMA_kanji_file_conv($textfile, $knjenc, isset($xkana) ? $xkana : '');
@@ -91,6 +93,13 @@ if (isset($btnLDI) && ($textfile != 'none')) {
} else {
$sql_query = $query;
}
// Set an empty sub_part to avoid an undefined variable.
// We could also rename the ldi* scripts
// to tbl_properties_ldi* to improve consistency with the other sub-pages.
//
// The $goto in ldi_table.php3 is set to tbl_properties.php3 but maybe
// if would be better to Browse the latest inserted data.
$sub_part='';
include('./sql.php3');
}