From 0299ac021020383bb6c868409ce05b3df19d533c Mon Sep 17 00:00:00 2001 From: haritha28 Date: Fri, 4 Sep 2015 18:58:43 +0530 Subject: [PATCH] Update comment about enabled extensions The comment message given in enabling the extensions are based on for the earlier versions of mediawiki which uses the requireonce() and as at present all the versions since 1.25 uses wfLoadExtensions() the comment message have been changed accordingly. Bug: T100940 Change-Id: I915a4893cc2d89624c9d8dd6504d7dc8bf166cd9 --- includes/installer/LocalSettingsGenerator.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/installer/LocalSettingsGenerator.php b/includes/installer/LocalSettingsGenerator.php index 7b1cfdcc19..137ab69473 100644 --- a/includes/installer/LocalSettingsGenerator.php +++ b/includes/installer/LocalSettingsGenerator.php @@ -153,8 +153,9 @@ class LocalSettingsGenerator { if ( count( $this->extensions ) ) { $localSettings .= " -# Enabled Extensions. Most extensions are enabled by including the base extension file here -# but check specific extension documentation for more details +# Enabled extensions. Most of the extensions are enabled by adding +# wfLoadExtensions('ExtensionName'); +# to LocalSettings.php. Check specific extension documentation for more details. # The following extensions were automatically enabled:\n"; foreach ( $this->extensions as $extName ) { -- 2.20.1