diff options
Diffstat (limited to 'includes/GitInfo.php')
-rw-r--r-- | includes/GitInfo.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/GitInfo.php b/includes/GitInfo.php index 5cc8ce496d22..410f6e68d2b2 100644 --- a/includes/GitInfo.php +++ b/includes/GitInfo.php @@ -318,9 +318,9 @@ class GitInfo { $config = "{$this->basedir}/config"; $url = false; if ( is_readable( $config ) ) { - Wikimedia\suppressWarnings(); + AtEase::suppressWarnings(); $configArray = parse_ini_file( $config, true ); - Wikimedia\restoreWarnings(); + AtEase::restoreWarnings(); $remote = false; // Use the "origin" remote repo if available or any other repo if not. |