Index: trunk/phase3/includes/profiler/Profiler.php |
— | — | @@ -67,7 +67,7 @@ |
68 | 68 | if( is_array( $wgProfiler ) ) { |
69 | 69 | if( !isset( $wgProfiler['class'] ) ) { |
70 | 70 | wfDebug( __METHOD__ . " called without \$wgProfiler['class']" |
71 | | - . ' set, falling back to ProfilerStub for safety' ); |
| 71 | + . " set, falling back to ProfilerStub for safety" ); |
72 | 72 | $class = 'ProfilerStub'; |
73 | 73 | } else { |
74 | 74 | $class = $wgProfiler['class']; |
— | — | @@ -76,8 +76,8 @@ |
77 | 77 | } elseif( $wgProfiler instanceof Profiler ) { |
78 | 78 | self::$__instance = $wgProfiler; // back-compat |
79 | 79 | } else { |
80 | | - wfDebug( __METHOD__ . ' called without bogus $wgProfiler setting,' |
81 | | - . ' falling back to ProfilerStub for safety' ); |
| 80 | + wfDebug( __METHOD__ . ' called with bogus $wgProfiler setting,' |
| 81 | + . " falling back to ProfilerStub for safety\n" ); |
82 | 82 | self::$__instance = new ProfilerStub( $wgProfiler ); |
83 | 83 | } |
84 | 84 | } |