From: Brad Jorsch Date: Mon, 9 Sep 2019 15:56:57 +0000 (-0400) Subject: maintenance/Maintenance.php: Fix MW_ENTRY_POINT definition (followup I24099f4c) X-Git-Tag: 1.34.0-rc.0~317^2 X-Git-Url: http://git.cyclocoop.org//%22javascript:ModifierStyle%28%27%22.%24id.%22%27%29/%22?a=commitdiff_plain;h=d2725a8e11f49a10c0ca3a16064383dd9ec47799;p=lhc%2Fweb%2Fwiklou.git 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 --- 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.