diff --git a/ChangeLog b/ChangeLog index 0156ba14c..49af1728f 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ $Source$ 2005-10-08 Michal Čihař * 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 * libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a diff --git a/libraries/import/ldi.php b/libraries/import/ldi.php index f80d15013..81d46ada5 100644 --- a/libraries/import/ldi.php +++ b/libraries/import/ldi.php @@ -43,7 +43,7 @@ if ($import_type == 'table') { ); } else { /* 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! $message = $strInvalidLDIImport; $show_error_header = TRUE;