Merge branch 'QA_3_3'
This commit is contained in:
@@ -73,6 +73,7 @@ $Id$
|
||||
- patch #2977725 [export] XML wrongly encoded, thanks to Victor Volkov - hanut
|
||||
- patch #2979234 [import] Create tables with current charset and collation.
|
||||
- patch #2979234, bug #2960105 [import] Properly import unicode text from ODS.
|
||||
- bug #2973280 [export] Proper handling of temporary directory in XLS export.
|
||||
|
||||
3.3.1.0 (2010-03-16)
|
||||
- bug #2941037 [core] Database structure not sorted by table correctly
|
||||
|
@@ -59,6 +59,7 @@ function PMA_exportFooter() {
|
||||
$tmp_filename = tempnam(realpath($GLOBALS['cfg']['TempDir']), 'pma_xls_');
|
||||
|
||||
$workbookWriter = new PHPExcel_Writer_Excel5($workbook);
|
||||
$workbookWriter->setTempDir(realpath($GLOBALS['cfg']['TempDir']));
|
||||
$workbookWriter->save($tmp_filename);
|
||||
|
||||
if (!PMA_exportOutputHandler(file_get_contents($tmp_filename))) {
|
||||
|
@@ -59,6 +59,7 @@ function PMA_exportFooter() {
|
||||
$tmp_filename = tempnam(realpath($GLOBALS['cfg']['TempDir']), 'pma_xlsx_');
|
||||
|
||||
$workbookWriter = new PHPExcel_Writer_Excel2007($workbook);
|
||||
$workbookWriter->setTempDir(realpath($GLOBALS['cfg']['TempDir']));
|
||||
$workbookWriter->save($tmp_filename);
|
||||
|
||||
if (!PMA_exportOutputHandler(file_get_contents($tmp_filename))) {
|
||||
|
Reference in New Issue
Block a user