Index: trunk/phase3/includes/installer/LocalSettingsGenerator.php |
— | — | @@ -111,7 +111,10 @@ |
112 | 112 | $localSettings = $this->getDefaultText(); |
113 | 113 | |
114 | 114 | if( count( $this->extensions ) ) { |
115 | | - $localSettings .= "\n# The following extensions were automatically enabled:\n"; |
| 115 | + $localSettings .= " |
| 116 | +# Enabled Extensions. Most extensions are enabled by including the base extension file here |
| 117 | +# but check specific extension documentation for more details |
| 118 | +# The following extensions were automatically enabled:\n"; |
116 | 119 | |
117 | 120 | foreach( $this->extensions as $extName ) { |
118 | 121 | $encExtName = self::escapePhpString( $extName ); |
— | — | @@ -119,6 +122,9 @@ |
120 | 123 | } |
121 | 124 | } |
122 | 125 | |
| 126 | + $localSettings .= "\n\n# End of automatically generated settings. |
| 127 | +# Add more configuration options below.\n\n"; |
| 128 | + |
123 | 129 | return $localSettings; |
124 | 130 | } |
125 | 131 | |
— | — | @@ -305,9 +311,6 @@ |
306 | 312 | |
307 | 313 | # Path to the GNU diff3 utility. Used for conflict resolution. |
308 | 314 | \$wgDiff3 = \"{$this->values['wgDiff3']}\"; |
309 | | - |
310 | | -# Enabled Extensions. Most extensions are enabled by including the base extension file here |
311 | | -# but check specific extension documentation for more details |
312 | 315 | "; |
313 | 316 | } |
314 | 317 | |