maintenance/Maintenance.php: Fix MW_ENTRY_POINT definition (followup I24099f4c)
authorBrad Jorsch <bjorsch@wikimedia.org>
Mon, 9 Sep 2019 15:56:57 +0000 (11:56 -0400)
committerBrad Jorsch <bjorsch@wikimedia.org>
Mon, 9 Sep 2019 15:56:57 +0000 (11:56 -0400)
Quotes were omitted. This currently works in PHP, but raises a warning.

Change-Id: I4c9ce4b5ea9fb9f30215f646cc8fa60db0ed7d1c

maintenance/Maintenance.php

index 68329aa..f89fa62 100644 (file)
@@ -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.