From a1789ddde42033f1b05cc4929491214ee6e79383 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 17 Dec 2015 09:15:42 +0100 Subject: Update to MediaWiki 1.26.0 --- includes/installer/SqliteInstaller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/installer/SqliteInstaller.php') diff --git a/includes/installer/SqliteInstaller.php b/includes/installer/SqliteInstaller.php index f990ddf5..43b809c9 100644 --- a/includes/installer/SqliteInstaller.php +++ b/includes/installer/SqliteInstaller.php @@ -157,9 +157,9 @@ class SqliteInstaller extends DatabaseInstaller { # Called early on in the installer, later we just want to sanity check # if it's still writable if ( $create ) { - wfSuppressWarnings(); + MediaWiki\suppressWarnings(); $ok = wfMkdirParents( $dir, 0700, __METHOD__ ); - wfRestoreWarnings(); + MediaWiki\restoreWarnings(); if ( !$ok ) { return Status::newFatal( 'config-sqlite-mkdir-error', $dir ); } -- cgit v1.2.3-54-g00ecf