Index: trunk/phase3/includes/Database.php |
— | — | @@ -394,9 +394,10 @@ |
395 | 395 | /* Standard fail function, called by default when a connection cannot be established |
396 | 396 | Displays the file cache if possible */ |
397 | 397 | function wfEmergencyAbort( &$conn ) { |
398 | | - global $wgTitle, $wgUseFileCache, $title, $wgInputEncoding, $wgOutputEncoding; |
| 398 | + global $wgTitle, $wgUseFileCache, $title, $wgInputEncoding, $wgSiteNotice, $wgOutputEncoding; |
399 | 399 | |
400 | 400 | header( "Content-type: text/html; charset=$wgOutputEncoding" ); |
| 401 | + $msg = $wgSiteNotice; |
401 | 402 | if($msg == "") $msg = wfMsgNoDB( "noconnect" ); |
402 | 403 | $text = $msg; |
403 | 404 | |