From d2725a8e11f49a10c0ca3a16064383dd9ec47799 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Mon, 9 Sep 2019 11:56:57 -0400 Subject: [PATCH] maintenance/Maintenance.php: Fix MW_ENTRY_POINT definition (followup I24099f4c) Quotes were omitted. This currently works in PHP, but raises a warning. Change-Id: I4c9ce4b5ea9fb9f30215f646cc8fa60db0ed7d1c --- maintenance/Maintenance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 68329aa5a6..f89fa6281a 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -20,7 +20,7 @@ * @defgroup Maintenance Maintenance */ -define( MW_ENTRY_POINT, 'cli' ); +define( 'MW_ENTRY_POINT', 'cli' ); // Bail on old versions of PHP, or if composer has not been run yet to install // dependencies. -- 2.20.1