diff --git a/thumb.php b/thumb.php index a273393d330..677979a0f4a 100644 --- a/thumb.php +++ b/thumb.php @@ -117,6 +117,7 @@ function wfThumbMain() { } function wfThumbError( $status, $msg ) { + global $wgShowHostnames; header( 'Cache-Control: no-cache' ); header( 'Content-Type: text/html; charset=utf-8' ); if ( $status == 404 ) { @@ -124,6 +125,13 @@ function wfThumbError( $status, $msg ) { } else { header( 'HTTP/1.1 500 Internal server error' ); } + if( $wgShowHostnames ) { + $url = htmlspecialchars( @$_SERVER['REQUEST_URI'] ); + $hostname = htmlspecialchars( wfHostname() ); + $debug = "\n\n"; + } else { + $debug = ""; + } echo <<Error generating thumbnail @@ -131,6 +139,7 @@ function wfThumbError( $status, $msg ) {

$msg

+$debug