This one does not handle charset conversion.

This commit is contained in:
Michal Čihař
2005-10-08 09:14:36 +00:00
parent ce05d7f446
commit 6c09b4bd58
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ $Source$
2005-10-08 Michal Čihař <michal@cihar.com> 2005-10-08 Michal Čihař <michal@cihar.com>
* libraries/display_export.lib.php: Use same formatting for all options. * libraries/display_export.lib.php: Use same formatting for all options.
* libraries/import/ldi.php: This one does not handle charset conversion.
2005-10-07 Marc Delisle <lem9@users.sourceforge.net> 2005-10-07 Marc Delisle <lem9@users.sourceforge.net>
* libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a * libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a

View File

@@ -43,7 +43,7 @@ if ($import_type == 'table') {
); );
} else { } else {
/* We do not define function when plugin is just queried for information above */ /* We do not define function when plugin is just queried for information above */
if ($import_file == 'none' || $compression != 'none') { if ($import_file == 'none' || $compression != 'none' || $charset_converion) {
// We handle only some kind of data! // We handle only some kind of data!
$message = $strInvalidLDIImport; $message = $strInvalidLDIImport;
$show_error_header = TRUE; $show_error_header = TRUE;