From 486e48a201c0a5a3638838151b06a71edf7b8d5b Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 11 Oct 2011 15:50:01 +0000 Subject: [PATCH] Make Skin::formatDebugHTML() work again since there is now usage memory --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 5982869a2d..b77cf78699 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -562,7 +562,7 @@ abstract class Skin extends ContextSource { $pre = ''; if ( $wgDebugTimestamps ) { $matches = array(); - if ( preg_match( '/^(\d+\.\d+\s{2})/', $line, $matches ) ) { + if ( preg_match( '/^(\d+\.\d+ \d+.\dM\s{2})/', $line, $matches ) ) { $pre = $matches[1]; $line = substr( $line, strlen( $pre ) ); } -- 2.20.1