Fix path to Maintenance.php (#80)

Co-authored-by: rvogel <vogel@hallowelt.biz>
This commit is contained in:
Robert Vogel 2022-01-28 18:07:16 +01:00 committed by GitHub
parent f20ad2e16f
commit b0c16cc660
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ use User;
$IP = getenv( 'MW_INSTALL_PATH' );
if ( $IP === false ) {
$IP = __DIR__ . '/../../../..';
$IP = __DIR__ . '/../../..';
}
require_once "$IP/maintenance/Maintenance.php";