Fix bug #679699
This commit is contained in:
@@ -6,8 +6,11 @@ $Id$
|
||||
$Source$
|
||||
|
||||
2003-02-03 Michal Cihar <nijel@users.sourceforge.net>
|
||||
* libraries/display_tbl.lib.php3, tbl_change.php3: Show blob size (RFE #678729).
|
||||
* libraries/display_tbl.lib.php3, tbl_change.php3: Show blob size (RFE
|
||||
#678729).
|
||||
* tbl_replace_fields.php3, tbl_change.php3: Allow binary uploads.
|
||||
* tbl_dump.php3: Fix bug #679699 (export to XML, save to file - Undefined
|
||||
variable: charset_of_file).
|
||||
|
||||
2003-02-03 Garvin Hicking <me@supergarv.de>
|
||||
* pdf_schema.php3, libraries/dbg/profiling.php3,
|
||||
|
@@ -245,7 +245,7 @@ else {
|
||||
// 'xml' case
|
||||
else if ($GLOBALS['what'] == 'xml') {
|
||||
// first add the xml tag
|
||||
$dump_buffer .= '<?xml version="1.0" encoding="' . (empty($asfile) ? $charset : $charset_of_file) . '"?>' . $crlf . $crlf;
|
||||
$dump_buffer .= '<?xml version="1.0" encoding="' . (empty($asfile) ? $charset : (isset($charset_of_file) ? $charset_of_file : $charset)) . '"?>' . $crlf . $crlf;
|
||||
// some comments
|
||||
$dump_buffer .= '<!--' . $crlf
|
||||
. '-' . $crlf
|
||||
|
Reference in New Issue
Block a user