Skip to content

Commit 9ed2883

Browse files
committed
Fixup MW for HHVM Repo Authorative mode
facebook/hhvm#5834 facebook/hhvm#5833 Change-Id: I138ffa5df874c5660897dc7feab36adef9f32aea
1 parent c7bc530 commit 9ed2883

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

RELEASE-NOTES-1.25

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ THIS IS NOT YET A RELEASE!
88
=== Changes since 1.25.3 ===
99
* (T103237) $wgUseGzip had no effect when using file cache.
1010
* (T114606) mw.notify was not correctly fixed to the page if
11-
initialized while not at the top of the page
11+
initialized while not at the top of the page.
12+
* * Fix issue that breaks HHVM Repo Authorative mode.
1213

1314
== MediaWiki 1.25.3 ==
1415

includes/debug/logger/LoggerFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static function getProvider() {
9494
* @return \Psr\Log\LoggerInterface
9595
*/
9696
public static function getInstance( $channel ) {
97-
if ( !interface_exists( '\Psr\Log\LoggerInterface' ) ) {
97+
if ( !interface_exists( 'Psr\Log\LoggerInterface' ) ) {
9898
$message = (
9999
'MediaWiki requires the <a href="https://github.com/php-fig/log">PSR-3 logging ' .
100100
"library</a> to be present. This library is not embedded directly in MediaWiki's " .

0 commit comments

Comments
 (0)