Fix output handling (bug #1450555).
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2006-03-15 Michal Čihař <michal@cihar.com>
|
||||
* libraries/export/htmlexcel.php: Fix output handling (bug #1450555).
|
||||
|
||||
2006-03-14 Michal Čihař <michal@cihar.com>
|
||||
* lang/czech: Update, use binary prefixes.
|
||||
* lang/english: Nothing to translate here.
|
||||
|
@@ -25,12 +25,14 @@ function PMA_exportComment($text) {
|
||||
* @access public
|
||||
*/
|
||||
function PMA_exportFooter() {
|
||||
?>
|
||||
if (!PMA_exportOutputHandler('
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<?php
|
||||
')) {
|
||||
return FALSE;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -43,7 +45,7 @@ function PMA_exportFooter() {
|
||||
*/
|
||||
function PMA_exportHeader() {
|
||||
global $charset, $charset_of_file;
|
||||
?>
|
||||
if (!PMA_exportOutputHandler('
|
||||
<html xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:x="urn:schemas-microsoft-com:office:excel"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
@@ -60,8 +62,10 @@ xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
<div id="Classeur1_16681" align=center x:publishsource="Excel">
|
||||
|
||||
<table x:str border=0 cellpadding=0 cellspacing=0 width=100% style='border-collapse: collapse'>
|
||||
<?php
|
||||
<table x:str border=0 cellpadding=0 cellspacing=0 width=100% style="border-collapse: collapse">
|
||||
')) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user