* (bug 18289) Database connection error page now returns correct HTML
Changed MWException::htmlHeader() and MWException::htmlFooter() to return the HTML rather than echo()'ing directly
This commit is contained in:
parent
dc70a8b270
commit
7248906455
2 changed files with 5 additions and 5 deletions
|
|
@ -317,6 +317,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
* (bug 18291) rebuildrecentchanges.php failed to add deletion log entries
|
||||
* (bug 18304) rebuildrecentchanges.php got size changes wrong
|
||||
* (bug 18170) Fixed a PHP warning in Parser::preSaveTransform() in PHP 5.3
|
||||
* (bug 18289) Database connection error page now returns correct HTML
|
||||
|
||||
== API changes in 1.15 ==
|
||||
* (bug 16858) Revamped list=deletedrevs to make listing deleted contributions
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ class MWException extends Exception {
|
|||
header( 'Pragma: nocache' );
|
||||
}
|
||||
$title = $this->getPageTitle();
|
||||
echo "<html>
|
||||
return "<html>
|
||||
<head>
|
||||
<title>$title</title>
|
||||
</head>
|
||||
|
|
@ -215,7 +215,7 @@ class MWException extends Exception {
|
|||
* print the end of the html page if not using $wgOut.
|
||||
*/
|
||||
function htmlFooter() {
|
||||
echo "</body></html>";
|
||||
return "</body></html>";
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -297,7 +297,7 @@ function wfReportException( Exception $e ) {
|
|||
wfPrintError( $message );
|
||||
} else {
|
||||
echo nl2br( htmlspecialchars( $message ) ). "\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$message = "Unexpected non-MediaWiki exception encountered, of type \"" . get_class( $e ) . "\"\n" .
|
||||
|
|
@ -322,8 +322,7 @@ function wfPrintError( $message ) {
|
|||
# Try to produce meaningful output anyway. Using echo may corrupt output to STDOUT though.
|
||||
if ( defined( 'STDERR' ) ) {
|
||||
fwrite( STDERR, $message );
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
echo( $message );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue