Merge remote-tracking branch 'origin/QA_4_0' into QA_4_0

This commit is contained in:
Weblate 2013-05-19 14:46:08 +02:00
commit cc5c41722d
2 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,7 @@ phpMyAdmin - ChangeLog
- bug #3930 Databases to choose for specific privileges show up escaped
- bug #3910 Export database with empty table as a php array, does not produce valid PHP
- bug #3936 Query profiler chart not loading from SQL Query page
- bug #3946 Missing CSV import option "Do not abort on INSERT error"
4.0.1.0 (2013-05-14)
- bug #3879 Import broken for CSV using LOAD DATA

View File

@ -83,6 +83,12 @@ class ImportCsv extends AbstractImportCsv
);
$generalOptions->addProperty($leaf);
}
$leaf = new BoolPropertyItem();
$leaf->setName("ignore");
$leaf->setText(__('Do not abort on INSERT error'));
$generalOptions->addProperty($leaf);
}
/**