Fix vim folding
authorTim Starling <tstarling@wikimedia.org>
Wed, 19 Nov 2014 03:25:45 +0000 (14:25 +1100)
committerTim Starling <tstarling@wikimedia.org>
Wed, 19 Nov 2014 05:54:53 +0000 (05:54 +0000)
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

index e822655..65ad403 100644 (file)
@@ -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;