bug 1038804 - insufficient space to save
This commit is contained in:
@@ -7,6 +7,7 @@ $Source$
|
|||||||
|
|
||||||
2004-10-02 Marc Delisle <lem9@users.sourceforge.net>
|
2004-10-02 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_alter.php: field structure changes not applied (CVS version only)
|
* tbl_alter.php: field structure changes not applied (CVS version only)
|
||||||
|
* export.php: bug #1038804, insufficient space to save
|
||||||
|
|
||||||
2004-09-30 Marc Delisle <lem9@users.sourceforge.net>
|
2004-09-30 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_addfield.php: bug #1037744 (CVS version only): cannot add a field
|
* tbl_addfield.php: bug #1037744 (CVS version only): cannot add a field
|
||||||
|
@@ -101,7 +101,7 @@ function PMA_exportOutputHandler($line)
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ($GLOBALS['asfile']) {
|
if ($GLOBALS['asfile']) {
|
||||||
if ($GLOBALS['save_on_server']) {
|
if ($GLOBALS['save_on_server'] && strlen($line) > 0) {
|
||||||
$write_result = @fwrite($GLOBALS['file_handle'], $line);
|
$write_result = @fwrite($GLOBALS['file_handle'], $line);
|
||||||
if (!$write_result || ($write_result != strlen($line))) {
|
if (!$write_result || ($write_result != strlen($line))) {
|
||||||
$GLOBALS['message'] = sprintf($GLOBALS['strNoSpace'], htmlspecialchars($save_filename));
|
$GLOBALS['message'] = sprintf($GLOBALS['strNoSpace'], htmlspecialchars($save_filename));
|
||||||
|
Reference in New Issue
Block a user