From 3a45b422f5e84677810e630a0a5c54f07f29a804 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 19 Nov 2014 14:25:45 +1100 Subject: [PATCH] Fix vim folding The "@{" in these two doc comments was being interpreted as an opening mark and was causing almost the whole file to be in a single section. Change-Id: I818ecd2f7621a22b6e8f5a4b93faee6fbf3664dc --- includes/DefaultSettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index e822655f87..65ad4032f9 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1383,7 +1383,7 @@ $wgDjvuOutputExtension = 'jpg'; /** * Site admin email address. * - * Defaults to "wikiadmin@{$wgServerName}". + * Defaults to "wikiadmin@$wgServerName". */ $wgEmergencyContact = false; @@ -1392,7 +1392,7 @@ $wgEmergencyContact = false; * * The address we should use as sender when a user is requesting his password. * - * Defaults to "apache@{$wgServerName}". + * Defaults to "apache@$wgServerName". */ $wgPasswordSender = false; -- 2.20.1