Robert Vogel has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/186746

Change subject: Fix for premature init of Message system
......................................................................

Fix for premature init of Message system

Replaced calls to wfMessage in constructors with the corresponding message
keys. Because object creation is on setup time (read in of
LocalSettings.php) using wfMessage will screw up a lot of things.

There are two known issues fixed by this:
* Semantic MediaWiki namespaces gone missing
* LDAPAuthentication / Echo breaks on AutoAuthLogin

Change-Id: I80bbe7bce5c554250f936438c310e4bf7fd6a583
---
M ArticleInfo/ArticleInfo.class.php
M Authors/Authors.class.php
M Avatars/Avatars.class.php
M Blog/Blog.class.php
M BlueSpiceProjectFeedbackHelper/BlueSpiceProjectFeedbackHelper.class.php
M CSyntaxHighlight/CSyntaxHighlight.class.php
M Checklist/Checklist.class.php
M ContextMenu/ContextMenu.class.php
M CountThings/CountThings.class.php
M Dashboards/Dashboards.class.php
M Emoticons/Emoticons.class.php
M ExtendedEditBar/ExtendedEditBar.class.php
M ExtendedSearch/ExtendedSearch.class.php
M ExtensionInfo/ExtensionInfo.class.php
M ExtensionInfo/includes/ViewExtensionInfoTable.php
M Flexiskin/Flexiskin.class.php
M FormattingHelp/FormattingHelp.class.php
M GroupManager/GroupManager.class.php
M HideTitle/HideTitle.class.php
M InsertCategory/InsertCategory.class.php
M InsertFile/InsertFile.class.php
M InsertLink/InsertLink.class.php
M InsertMagic/InsertMagic.class.php
M InterWikiLinks/InterWikiLinks.class.php
M NamespaceCss/NamespaceCss.class.php
M NamespaceManager/NamespaceManager.class.php
M Notifications/Notifications.class.php
M PageAccess/PageAccess.class.php
M PageTemplates/PageTemplates.class.php
M PagesVisited/PagesVisited.class.php
M PermissionManager/PermissionManager.class.php
M Preferences/Preferences.class.php
M RSSFeeder/RSSFeeder.class.php
M RSSStandards/RSSStandards.class.php
M Readers/Readers.class.php
M ResponsibleEditors/ResponsibleEditors.class.php
M Review/Review.class.php
M SaferEdit/SaferEdit.class.php
M SecureFileStore/SecureFileStore.class.php
M ShoutBox/ShoutBox.class.php
M SmartList/SmartList.class.php
M StateBar/StateBar.class.php
M Statistics/Statistics.class.php
M TopMenuBarCustomizer/TopMenuBarCustomizer.class.php
M UEModulePDF/UEModulePDF.class.php
M UniversalExport/UniversalExport.class.php
M UserManager/UserManager.class.php
M UserPreferences/UserPreferences.class.php
M UserSidebar/UserSidebar.class.php
M VisualEditor/VisualEditor.class.php
M WantedArticle/WantedArticle.class.php
M WatchList/WatchList.class.php
M WhoIsOnline/WhoIsOnline.class.php
M WidgetBar/WidgetBar.class.php
M WikiAdmin/WikiAdmin.class.php
55 files changed, 110 insertions(+), 110 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlueSpiceExtensions 
refs/changes/46/186746/1

diff --git a/ArticleInfo/ArticleInfo.class.php 
b/ArticleInfo/ArticleInfo.class.php
index c7f1bbf..af4eeff 100644
--- a/ArticleInfo/ArticleInfo.class.php
+++ b/ArticleInfo/ArticleInfo.class.php
@@ -66,7 +66,7 @@
                $this->mExtensionType = EXTTYPE::OTHER; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME        => 'ArticleInfo',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-articleinfo-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-articleinfo-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Authors/Authors.class.php b/Authors/Authors.class.php
index 8dc5186..b92c03a 100644
--- a/Authors/Authors.class.php
+++ b/Authors/Authors.class.php
@@ -69,7 +69,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK;
                $this->mInfo          = array(
                        EXTINFO::NAME        => 'Authors',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-authors-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-authors-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Avatars/Avatars.class.php b/Avatars/Avatars.class.php
index 79af842..85c8011 100644
--- a/Avatars/Avatars.class.php
+++ b/Avatars/Avatars.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'Avatars',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-avatars-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-avatars-desc',
                        EXTINFO::AUTHOR => 'Marc Reymann',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/Blog/Blog.class.php b/Blog/Blog.class.php
index b7ad327..2784a74 100644
--- a/Blog/Blog.class.php
+++ b/Blog/Blog.class.php
@@ -52,7 +52,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'Blog',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-blog-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-blog-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git 
a/BlueSpiceProjectFeedbackHelper/BlueSpiceProjectFeedbackHelper.class.php 
b/BlueSpiceProjectFeedbackHelper/BlueSpiceProjectFeedbackHelper.class.php
index f3ce95f..c7bc3e5 100644
--- a/BlueSpiceProjectFeedbackHelper/BlueSpiceProjectFeedbackHelper.class.php
+++ b/BlueSpiceProjectFeedbackHelper/BlueSpiceProjectFeedbackHelper.class.php
@@ -49,7 +49,7 @@
                $this->mExtensionType = EXTTYPE::OTHER; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME        => 
'BlueSpiceProjectFeedbackHelper',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-bluespiceprojectfeedbackhelper-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 
'bs-bluespiceprojectfeedbackhelper-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/CSyntaxHighlight/CSyntaxHighlight.class.php 
b/CSyntaxHighlight/CSyntaxHighlight.class.php
index e587c27..2b5ef95 100644
--- a/CSyntaxHighlight/CSyntaxHighlight.class.php
+++ b/CSyntaxHighlight/CSyntaxHighlight.class.php
@@ -96,7 +96,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'CSyntaxHighlight',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-csyntaxhighlight-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-csyntaxhighlight-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Checklist/Checklist.class.php b/Checklist/Checklist.class.php
index 9e5cd22..adf82cf 100644
--- a/Checklist/Checklist.class.php
+++ b/Checklist/Checklist.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME => 'Checklist',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-checklist-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-checklist-desc',
                        EXTINFO::AUTHOR => 'Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/ContextMenu/ContextMenu.class.php 
b/ContextMenu/ContextMenu.class.php
index e7dcc30..4a80910 100644
--- a/ContextMenu/ContextMenu.class.php
+++ b/ContextMenu/ContextMenu.class.php
@@ -39,7 +39,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK;
                $this->mInfo = array(
                        EXTINFO::NAME => 'ContextMenu',
-                       EXTINFO::DESCRIPTION => 
wfMessage('bs-contextmenu-desc')->plain(),
+                       EXTINFO::DESCRIPTION => 'bs-contextmenu-desc',
                        EXTINFO::AUTHOR => 'Tobias Weichart',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/CountThings/CountThings.class.php 
b/CountThings/CountThings.class.php
index 308cf73..123aabb 100644
--- a/CountThings/CountThings.class.php
+++ b/CountThings/CountThings.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME => 'CountThings',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-countthings-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-countthings-desc',
                        EXTINFO::AUTHOR => 'Markus Glaser, Mathias Scheer',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
@@ -72,11 +72,11 @@
                $this->setHook( 'BSInsertMagicAjaxGetData', 
'onBSInsertMagicAjaxGetData' );
                wfProfileOut( 'BS::'.__METHOD__ );
        }
-       
+
        /**
         *
         * @param Parser $parser
-        * @return boolean 
+        * @return boolean
         */
        public function onParserFirstCallInit( &$parser ) {
                $parser->setHook( 'bs:countarticles', array( &$this, 
'onMagicWordBsCountArticles' ) );
@@ -101,7 +101,7 @@
                        'desc' => wfMessage( 
'bs-countthings-tag-countarticles-desc' )->escaped(),
                        'code' => '<bs:countarticles />',
                );
-               
+
                $oResponse->result[] = array(
                        'id' => 'bs:countusers',
                        'type' => 'tag',
@@ -109,7 +109,7 @@
                        'desc' => wfMessage( 
'bs-countthings-tag-countusers-desc' )->escaped(),
                        'code' => '<bs:countusers />',
                );
-               
+
                $oResponse->result[] = array(
                        'id' => 'bs:countcharacters',
                        'type' => 'tag',
@@ -135,14 +135,14 @@
         * @param type $input
         * @param type $args
         * @param Parser $parser
-        * @return type 
+        * @return type
         */
        public function onMagicWordBsCountUsers( $input, $args, $parser ) {
                $dbr = wfGetDB( DB_SLAVE );
                $res = $dbr->select( 'user', 'user_id' );
                $out = $dbr->numRows( $res );
                $dbr->freeResult( $res );
-               
+
                //This is a bugfix for the case that somebody writes a wrong 
empty tag.
                // <bs:countusers> instead of <bs:countusers />
                //TODO: Do we really need to catch errors like this?
@@ -157,7 +157,7 @@
         * @param type $input
         * @param type $args
         * @param Parser $parser
-        * @return type 
+        * @return type
         */
        public function onMagicWordBsCountCharacters( $input, $args, $parser ) {
                $parser->disableCache();
diff --git a/Dashboards/Dashboards.class.php b/Dashboards/Dashboards.class.php
index e6388c4..bc5a6e7 100644
--- a/Dashboards/Dashboards.class.php
+++ b/Dashboards/Dashboards.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'Dashboards',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-dashboards-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-dashboards-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Emoticons/Emoticons.class.php b/Emoticons/Emoticons.class.php
index c070cef..2aebf68 100644
--- a/Emoticons/Emoticons.class.php
+++ b/Emoticons/Emoticons.class.php
@@ -77,7 +77,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'Emoticons',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-emoticons-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-emoticons-desc',
                        EXTINFO::AUTHOR      => 'Alex Wollangk, Marc Reymann, 
Sebastian Ulbricht, Mathias Scheer, Robert Vogel, Patric Wirth',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/ExtendedEditBar/ExtendedEditBar.class.php 
b/ExtendedEditBar/ExtendedEditBar.class.php
index cf63618..78575ab 100644
--- a/ExtendedEditBar/ExtendedEditBar.class.php
+++ b/ExtendedEditBar/ExtendedEditBar.class.php
@@ -58,7 +58,7 @@
                $this->mExtensionType = EXTTYPE::OTHER; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME        => 'ExtendedEditBar',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-extendededitbar-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-extendededitbar-desc',
                        EXTINFO::AUTHOR      => 'MediaWiki Extension, packaging 
by Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/ExtendedSearch/ExtendedSearch.class.php 
b/ExtendedSearch/ExtendedSearch.class.php
index 8f55b34..6baad6d 100644
--- a/ExtendedSearch/ExtendedSearch.class.php
+++ b/ExtendedSearch/ExtendedSearch.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME => 'ExtendedSearch',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-extendedsearch-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-extendedsearch-desc',
                        EXTINFO::AUTHOR => 'Stephan Muggli, Mathias Scheer, 
Markus Glaser',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/ExtensionInfo/ExtensionInfo.class.php 
b/ExtensionInfo/ExtensionInfo.class.php
index 31346e8..4ecf553 100644
--- a/ExtensionInfo/ExtensionInfo.class.php
+++ b/ExtensionInfo/ExtensionInfo.class.php
@@ -59,7 +59,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'ExtensionInfo',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-extensioninfo-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-extensioninfo-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/ExtensionInfo/includes/ViewExtensionInfoTable.php 
b/ExtensionInfo/includes/ViewExtensionInfoTable.php
index 6220a02..43437d3 100644
--- a/ExtensionInfo/includes/ViewExtensionInfoTable.php
+++ b/ExtensionInfo/includes/ViewExtensionInfoTable.php
@@ -63,7 +63,7 @@
                                'version' => ( $aExtension[EXTINFO::VERSION] 
=== 'default' ) ? $wgBlueSpiceExtInfo['version'] : 
$aExtension[EXTINFO::VERSION],
                                'package' => ( !isset( 
$aExtension[EXTINFO::PACKAGE] ) || $aExtension[EXTINFO::PACKAGE] === 'default' 
) ? $wgBlueSpiceExtInfo['package'] : $aExtension[EXTINFO::PACKAGE],
                                //'description' => wfMessage( 
$aExtension[EXTINFO::DESCRIPTION] )->plain(), Future use
-                               'description' => 
$aExtension[EXTINFO::DESCRIPTION],
+                               'description' => wfMessage( 
$aExtension[EXTINFO::DESCRIPTION] )->escaped(),
                                'status' => ( $aExtension[EXTINFO::STATUS] === 
'default' ) ? $wgBlueSpiceExtInfo['status'] : $aExtension[EXTINFO::STATUS],
                        );
 
diff --git a/Flexiskin/Flexiskin.class.php b/Flexiskin/Flexiskin.class.php
index eaca0a0..6b6aaf1 100644
--- a/Flexiskin/Flexiskin.class.php
+++ b/Flexiskin/Flexiskin.class.php
@@ -51,7 +51,7 @@
                $this->mExtensionType = EXTTYPE::OTHER; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME => 'Flexiskin',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-flexiskin-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-flexiskin-desc',
                        EXTINFO::AUTHOR => 'Tobias Weichart',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/FormattingHelp/FormattingHelp.class.php 
b/FormattingHelp/FormattingHelp.class.php
index 092fdf0..17c0f41 100644
--- a/FormattingHelp/FormattingHelp.class.php
+++ b/FormattingHelp/FormattingHelp.class.php
@@ -57,7 +57,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'FormattingHelp',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-formattinghelp-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-formattinghelp-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/GroupManager/GroupManager.class.php 
b/GroupManager/GroupManager.class.php
index 4e70d2a..5334a2b 100644
--- a/GroupManager/GroupManager.class.php
+++ b/GroupManager/GroupManager.class.php
@@ -48,7 +48,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'GroupManager',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-groupmanager-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-groupmanager-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/HideTitle/HideTitle.class.php b/HideTitle/HideTitle.class.php
index 785b01b..9302f06 100644
--- a/HideTitle/HideTitle.class.php
+++ b/HideTitle/HideTitle.class.php
@@ -43,7 +43,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'HideTitle',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-hidetitle-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-hidetitle-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/InsertCategory/InsertCategory.class.php 
b/InsertCategory/InsertCategory.class.php
index 16b6055..16ff593 100644
--- a/InsertCategory/InsertCategory.class.php
+++ b/InsertCategory/InsertCategory.class.php
@@ -60,7 +60,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'InsertCategory',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-insertcategory-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-insertcategory-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht, Stefan Widmann',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/InsertFile/InsertFile.class.php b/InsertFile/InsertFile.class.php
index 78712d2..923a0ce 100644
--- a/InsertFile/InsertFile.class.php
+++ b/InsertFile/InsertFile.class.php
@@ -61,7 +61,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'InsertFile',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-insertfile-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-insertfile-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht, Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/InsertLink/InsertLink.class.php b/InsertLink/InsertLink.class.php
index dbd53f4..0a5f02c 100644
--- a/InsertLink/InsertLink.class.php
+++ b/InsertLink/InsertLink.class.php
@@ -43,7 +43,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'InsertLink',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-insertlink-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-insertlink-desc',
                        EXTINFO::AUTHOR => 'Markus Glaser, Sebastian Ulbricht, 
Patric Wirth',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/InsertMagic/InsertMagic.class.php 
b/InsertMagic/InsertMagic.class.php
index effeb49..2356c9b 100644
--- a/InsertMagic/InsertMagic.class.php
+++ b/InsertMagic/InsertMagic.class.php
@@ -115,7 +115,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'InsertMagic',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-insertmagic-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-insertmagic-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/InterWikiLinks/InterWikiLinks.class.php 
b/InterWikiLinks/InterWikiLinks.class.php
index 9bfb1f0..e064d45 100644
--- a/InterWikiLinks/InterWikiLinks.class.php
+++ b/InterWikiLinks/InterWikiLinks.class.php
@@ -3,7 +3,7 @@
  * InterWiki Links extension for BlueSpice for MediaWiki
  *
  * Administration interface for adding, editing and deleting interwiki links
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -17,7 +17,7 @@
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * 
+ *
  * This file is part of BlueSpice for MediaWiki
  * For further information visit http://www.blue-spice.org
  *
@@ -30,7 +30,7 @@
  * @license    http://www.gnu.org/copyleft/gpl.html GNU Public License v2 or 
later
  * @filesource
  */
- 
+
 /**
  * Main class for InterWikiLinks extension
  * @package BlueSpice_Extensions
@@ -48,7 +48,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'InterWikiLinks',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-interwikilinks-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-interwikilinks-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
@@ -75,7 +75,7 @@
        }
 
        /**
-        * 
+        *
         * @param OutputPage $oOutputPage
         * @param Skin $oSkin
         * @return boolean - always true
@@ -90,17 +90,17 @@
 
        public function getInterWikiLinkPrefixes() {
                $oDbr = wfGetDB( DB_SLAVE );
-               $rRes = $oDbr->select( 
-                               'interwiki', 
-                               'iw_prefix', 
-                               '', 
-                               '', 
+               $rRes = $oDbr->select(
+                               'interwiki',
+                               'iw_prefix',
+                               '',
+                               '',
                                array( "ORDER BY" => "iw_prefix" )
                );
-               
+
                $aInterWikiPrefixes = array();
                while( $o = $oDbr->fetchObject($rRes) ) $aInterWikiPrefixes[] = 
$o->iw_prefix;
-               
+
                return $aInterWikiPrefixes;
        }
        /*
@@ -125,29 +125,29 @@
                $data = array();
 
                $dbr = wfGetDB( DB_SLAVE );
-               $res = $dbr->select( 
-                               'interwiki', 
-                               '*', 
-                               '', 
-                               '', 
+               $res = $dbr->select(
+                               'interwiki',
+                               '*',
+                               '',
+                               '',
                                array( "ORDER BY" => "iw_prefix" )
                );
                $data['totalCount'] = $dbr->numRows( $res );
 
                global $wgDBtype, $wgDBprefix;
                if ( $wgDBtype == 'oracle' ) {
-                       $res = $dbr->query( "SELECT * FROM 
-                                                                       (SELECT 
iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans,row_number() over (order by 
iw_prefix ASC) rnk  
-                                                                               
FROM \"".strtoupper( $wgDBprefix )."INTERWIKI\"  
-                                                                       ) 
+                       $res = $dbr->query( "SELECT * FROM
+                                                                       (SELECT 
iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans,row_number() over (order by 
iw_prefix ASC) rnk
+                                                                               
FROM \"".strtoupper( $wgDBprefix )."INTERWIKI\"
+                                                                       )
                                                                        where 
rnk BETWEEN ".($iStart+1)." AND ".($iLimit + $iStart)
                                                );
                } else {
-                       $res = $dbr->select( 
-                                       'interwiki', 
-                                       '*', 
-                                       '', 
-                                       '', 
+                       $res = $dbr->select(
+                                       'interwiki',
+                                       '*',
+                                       '',
+                                       '',
                                        array(
                                                "ORDER BY" => "iw_prefix",
                                                "LIMIT" => $iLimit,
@@ -209,8 +209,8 @@
                        $aAnswer['errors'][] = array('id' => 'iwediturl', 
'message' => $oValidationResult->getI18N() );
                }
 
-               if ( substr_count( $iw_prefix, ' ' ) 
-                       || substr_count( $iw_prefix, '"' ) 
+               if ( substr_count( $iw_prefix, ' ' )
+                       || substr_count( $iw_prefix, '"' )
                        || substr_count( $iw_prefix, '&' )
                        || substr_count( $iw_prefix, ':' ) ) {
                        $aAnswer['success'] = false;
@@ -262,7 +262,7 @@
                        }
                        $aAnswer['message'][] = $bEditMode ? wfMessage( 
'bs-interwikilinks-link-added' )->plain() : wfMessage( 
'bs-interwikilinks-link-created' )->plain();
                }
-               
+
                self::purgeTitles( $iw_prefix );
 
                return FormatJson::encode( $aAnswer );
@@ -303,7 +303,7 @@
                if ( $aAnswer['success'] ) {
                        $aAnswer['message'][] = wfMessage( 
'bs-interwikilinks-link-deleted' )->plain();
                }
-               
+
                self::purgeTitles( $iw_prefix );
 
                return FormatJson::encode( $aAnswer );
@@ -316,7 +316,7 @@
                        array('iwl_from', 'iwl_prefix'),
                        array('iwl_prefix' => $iw_prefix)
                );
-               
+
                foreach( $res as $row ) {
                        $oTitle = Title::newFromID( $row->iwl_from );
                        if( $oTitle instanceof Title == false ) continue;
diff --git a/NamespaceCss/NamespaceCss.class.php 
b/NamespaceCss/NamespaceCss.class.php
index 6da5daa..2eec8f1 100644
--- a/NamespaceCss/NamespaceCss.class.php
+++ b/NamespaceCss/NamespaceCss.class.php
@@ -3,7 +3,7 @@
  * NamespaceCss extension for BlueSpice
  *
  * Use different CSS-Styles in Namespaces by add page 
MediaWiki:'NAMESPACENAME'_css
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -17,7 +17,7 @@
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * 
+ *
  * This file is part of BlueSpice for MediaWiki
  * For further information visit http://www.blue-spice.org
  *
@@ -43,7 +43,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'NamespaceCss',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-namespacecss-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-namespacecss-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel, Tobias Weichart, 
Patric Wirth',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/NamespaceManager/NamespaceManager.class.php 
b/NamespaceManager/NamespaceManager.class.php
index de2ebc6..dae9613 100644
--- a/NamespaceManager/NamespaceManager.class.php
+++ b/NamespaceManager/NamespaceManager.class.php
@@ -49,7 +49,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'NamespaceManager',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-namespacemanager-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-namespacemanager-desc',
                        EXTINFO::AUTHOR => 'Sebastian Ulbricht, Stefan Widmann',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Notifications/Notifications.class.php 
b/Notifications/Notifications.class.php
index 31d342c..e9fcdd9 100644
--- a/Notifications/Notifications.class.php
+++ b/Notifications/Notifications.class.php
@@ -67,7 +67,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME        => 'Notifications',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-notifications-desc' )->text(),
+                       EXTINFO::DESCRIPTION => 'bs-notifications-desc',
                        EXTINFO::AUTHOR      => array( 
'[https://www.mediawiki.org/wiki/User:Swidmann Stefan Widmann]' ),
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/PageAccess/PageAccess.class.php b/PageAccess/PageAccess.class.php
index 6f1a474..6c44579 100644
--- a/PageAccess/PageAccess.class.php
+++ b/PageAccess/PageAccess.class.php
@@ -51,7 +51,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME => 'PageAccess',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-pageaccess-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-pageaccess-desc',
                        EXTINFO::AUTHOR => 'Marc Reymann',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
@@ -75,7 +75,7 @@
 
        public function onArticleSave( &$article, &$user, &$text, &$summary, 
$minor, $watchthis, $sectionanchor, &$flags, &$status ) {
                # Prevent user from locking himself out of his own page
-               $oEditInfo = $article->prepareTextForEdit( $text, null, $user 
); 
+               $oEditInfo = $article->prepareTextForEdit( $text, null, $user );
                $sAccessGroups = $oEditInfo->output->getProperty( 
'bs-page-access' );
                if ( !$this->checkAccessGroups( $user, $sAccessGroups ) ) {
                        $err[0] = 
'bs-pageaccess-error-not-member-of-given-groups';
diff --git a/PageTemplates/PageTemplates.class.php 
b/PageTemplates/PageTemplates.class.php
index 8b74443..b58ba2b 100644
--- a/PageTemplates/PageTemplates.class.php
+++ b/PageTemplates/PageTemplates.class.php
@@ -58,7 +58,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'PageTemplates',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-pagetemplates-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-pagetemplates-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/PagesVisited/PagesVisited.class.php 
b/PagesVisited/PagesVisited.class.php
index 2d10729..94d5d2a 100644
--- a/PagesVisited/PagesVisited.class.php
+++ b/PagesVisited/PagesVisited.class.php
@@ -65,7 +65,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'PagesVisited',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-pagesvisited-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-pagesvisited-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/PermissionManager/PermissionManager.class.php 
b/PermissionManager/PermissionManager.class.php
index 89b423d..4466f60 100644
--- a/PermissionManager/PermissionManager.class.php
+++ b/PermissionManager/PermissionManager.class.php
@@ -85,7 +85,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'PermissionManager',
-                       EXTINFO::DESCRIPTION => 'Administration interface for 
editing user rights',
+                       EXTINFO::DESCRIPTION => 'bs-permissionmanager-desc',
                        EXTINFO::AUTHOR => 'Sebastian Ulbricht',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/Preferences/Preferences.class.php 
b/Preferences/Preferences.class.php
index 1a31a56..fbf344f 100644
--- a/Preferences/Preferences.class.php
+++ b/Preferences/Preferences.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'Preferences',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-preferences-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-preferences-desc',
                        EXTINFO::AUTHOR => 'Sebastian Ulbricht, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/RSSFeeder/RSSFeeder.class.php b/RSSFeeder/RSSFeeder.class.php
index d6ae74c..56c34d0 100644
--- a/RSSFeeder/RSSFeeder.class.php
+++ b/RSSFeeder/RSSFeeder.class.php
@@ -1,9 +1,9 @@
 <?php
 /**
  * This is the RSSFeeder class.
- * 
+ *
  * The RSSFeeder offers different Feeds.
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -17,7 +17,7 @@
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * 
+ *
  * This file is part of BlueSpice for MediaWiki
  * For further information visit http://www.blue-spice.org
  *
@@ -48,7 +48,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'RSSFeeder',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-rssfeeder-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-rssfeeder-desc',
                        EXTINFO::AUTHOR      => 'Sebastian Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
@@ -84,7 +84,7 @@
 
        /**
         * Hook Handler for BSDashboardsAdminDashboardPortalPortlets
-        * 
+        *
         * @param array &$aPortlets reference to array portlets
         * @return boolean always true to keep hook alive
         */
@@ -105,7 +105,7 @@
 
        /**
         * Hook Handler for BSDashboardsAdminDashboardPortalConfig
-        * 
+        *
         * @param object $oCaller caller instance
         * @param array &$aPortalConfig reference to array portlet configs
         * @param boolean $bIsDefault default
@@ -126,7 +126,7 @@
 
                /**
         * Hook Handler for BSDashboardsAdminDashboardPortalPortlets
-        * 
+        *
         * @param array &$aPortlets reference to array portlets
         * @return boolean always true to keep hook alive
         */
@@ -147,7 +147,7 @@
 
        /**
         * Hook Handler for BSDashboardsAdminDashboardPortalConfig
-        * 
+        *
         * @param object $oCaller caller instance
         * @param array &$aPortalConfig reference to array portlet configs
         * @param boolean $bIsDefault default
@@ -203,7 +203,7 @@
 
        /**
         * returns an array of all registered feed plugings
-        * @return array 
+        * @return array
         */
        public static function getRegisteredFeeds() {
                wfRunHooks( 'BSRSSFeederGetRegisteredFeeds', array( 
&self::$aFeeds ) );
diff --git a/RSSStandards/RSSStandards.class.php 
b/RSSStandards/RSSStandards.class.php
index c06b529..b52db93 100644
--- a/RSSStandards/RSSStandards.class.php
+++ b/RSSStandards/RSSStandards.class.php
@@ -32,7 +32,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'RSSStandards',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-rssstandards-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-rssstandards-desc',
                        EXTINFO::AUTHOR      => 'Sebastian Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Readers/Readers.class.php b/Readers/Readers.class.php
index 6c5607c..27966a3 100644
--- a/Readers/Readers.class.php
+++ b/Readers/Readers.class.php
@@ -50,7 +50,7 @@
                $this->mExtensionType = EXTTYPE::OTHER; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME        => 'Readers',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-readers-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-readers-desc',
                        EXTINFO::AUTHOR      => 'Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/ResponsibleEditors/ResponsibleEditors.class.php 
b/ResponsibleEditors/ResponsibleEditors.class.php
index 42942ee..9975ee0 100644
--- a/ResponsibleEditors/ResponsibleEditors.class.php
+++ b/ResponsibleEditors/ResponsibleEditors.class.php
@@ -44,7 +44,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'ResponsibleEditors',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-responsibleeditors-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-responsibleeditors-desc',
                        EXTINFO::AUTHOR => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Review/Review.class.php b/Review/Review.class.php
index cb86613..972867f 100644
--- a/Review/Review.class.php
+++ b/Review/Review.class.php
@@ -57,7 +57,7 @@
                $this->mExtensionType = EXTTYPE::OTHER; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME => 'Review',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-review-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-review-desc',
                        EXTINFO::AUTHOR => 'Markus Glaser',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/SaferEdit/SaferEdit.class.php b/SaferEdit/SaferEdit.class.php
index 7b2fba3..af19628 100644
--- a/SaferEdit/SaferEdit.class.php
+++ b/SaferEdit/SaferEdit.class.php
@@ -61,7 +61,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'SaferEdit',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-saferedit-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-saferedit-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/SecureFileStore/SecureFileStore.class.php 
b/SecureFileStore/SecureFileStore.class.php
index 3ac7821..cdce0b1 100644
--- a/SecureFileStore/SecureFileStore.class.php
+++ b/SecureFileStore/SecureFileStore.class.php
@@ -3,7 +3,7 @@
  * SecureFileStore extension for BlueSpice
  *
  * Prevent unauthorized access to files and images.
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -17,7 +17,7 @@
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * 
+ *
  * This file is part of BlueSpice for MediaWiki
  * For further information visit http://www.blue-spice.org
  *
@@ -66,7 +66,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'SecureFileStore',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-securefilestore-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-securefilestore-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Marc Reymann',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
@@ -86,7 +86,7 @@
        protected function initExt() {
                wfProfileIn( 'BS::'.__METHOD__ );
                BsExtensionManager::setContext( 'MW::SecureFileStore::Active' );
-               
+
                BsConfig::registerVar( 'MW::SecureFileStore::Active', true, 
BsConfig::LEVEL_PRIVATE|BsConfig::TYPE_BOOL|BsConfig::RENDER_AS_JAVASCRIPT );
                BsConfig::registerVar( 
'MW::SecureFileStore::DefaultDisposition', 'inline', 
BsConfig::LEVEL_PUBLIC|BsConfig::TYPE_STRING|BsConfig::USE_PLUGIN_FOR_PREFS, 
'bs-securefilestore-pref-defaultdisposition', 'select' );
                BsConfig::registerVar( 
'MW::SecureFileStore::DispositionInline', array( 'pdf' ), 
BsConfig::LEVEL_PUBLIC|BsConfig::TYPE_ARRAY_STRING, 
'bs-securefilestore-pref-dispositioninline', 'multiselectplusadd' );
@@ -115,7 +115,7 @@
         * Replaces links to files with links to secure file dispatcher.
         * @param object $oObject needed by hook
         * @param object $oText reference to skin template object
-        * @return bool hook must return true 
+        * @return bool hook must return true
         */
        public function secureImages( $oObject, &$oText ) {
                if ( !BsConfig::get( 'MW::SecureFileStore::Active' ) ) return 
true;
@@ -126,7 +126,7 @@
        /**
         * Replaces links to files with links to secure file dispatcher.
         * @param string $sText HTML source text
-        * @return string HTML with replaced links 
+        * @return string HTML with replaced links
         */
        public static function secureFilesInText( $sText ) {
                if ( !BsConfig::get( 'MW::SecureFileStore::Active' ) ) return 
$sText;
@@ -137,7 +137,7 @@
         * Replaces links to files with links to secure file dispatcher.
         * @param string $sText HTML source text
         * @param bool $bIsUrl switches replacement mode
-        * @return string HTML with replaced links 
+        * @return string HTML with replaced links
         */
        public static function secureStuff( $sText, $bIsUrl = false ) {
                global $wgScriptPath, $wgUploadPath;
@@ -201,7 +201,7 @@
                // At this point we have a valid and readable file path in 
$sFilePath.
                // Now create a File object to get some properties
 
-               if ( strstr( $sFilePath, 'thumb' ) ) $sFindFileName = 
preg_replace( "#(\d*px-)#", '', $sFileName ); 
+               if ( strstr( $sFilePath, 'thumb' ) ) $sFindFileName = 
preg_replace( "#(\d*px-)#", '', $sFileName );
                else $sFindFileName = $sFileName;
 
                $aOptions = array( 'time' => false );
diff --git a/ShoutBox/ShoutBox.class.php b/ShoutBox/ShoutBox.class.php
index dd29f36..5355c88 100644
--- a/ShoutBox/ShoutBox.class.php
+++ b/ShoutBox/ShoutBox.class.php
@@ -80,7 +80,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK;
                $this->mInfo = array(
                        EXTINFO::NAME => 'ShoutBox',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-shoutbox-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-shoutbox-desc',
                        EXTINFO::AUTHOR => 'Karl Waldmannstetter, Markus 
Glaser',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/SmartList/SmartList.class.php b/SmartList/SmartList.class.php
index fb8e9bf..42cbd5a 100644
--- a/SmartList/SmartList.class.php
+++ b/SmartList/SmartList.class.php
@@ -53,7 +53,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'SmartList',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-smartlist-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-smartlist-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Robert Vogel, 
Patric Wirth, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/StateBar/StateBar.class.php b/StateBar/StateBar.class.php
index 3d00692..d175ebf 100644
--- a/StateBar/StateBar.class.php
+++ b/StateBar/StateBar.class.php
@@ -57,7 +57,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'StateBar',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-statebar-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-statebar-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel, Patric Wirth',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/Statistics/Statistics.class.php b/Statistics/Statistics.class.php
index 676e7de..30e5dfd 100644
--- a/Statistics/Statistics.class.php
+++ b/Statistics/Statistics.class.php
@@ -76,7 +76,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE; 
//SPECIALPAGE/OTHER/VARIABLE/PARSERHOOK
                $this->mInfo = array(
                        EXTINFO::NAME        => 'Statistics',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-statistics-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-statistics-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Patric Wirth',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/TopMenuBarCustomizer/TopMenuBarCustomizer.class.php 
b/TopMenuBarCustomizer/TopMenuBarCustomizer.class.php
index 3097316..f422665 100644
--- a/TopMenuBarCustomizer/TopMenuBarCustomizer.class.php
+++ b/TopMenuBarCustomizer/TopMenuBarCustomizer.class.php
@@ -67,7 +67,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'TopMenuBarCustomizer',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-topmenubarcustomizer-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-topmenubarcustomizer-desc',
                        EXTINFO::AUTHOR      => 'Patric Wirth',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/UEModulePDF/UEModulePDF.class.php 
b/UEModulePDF/UEModulePDF.class.php
index 1e32992..0f200b6 100644
--- a/UEModulePDF/UEModulePDF.class.php
+++ b/UEModulePDF/UEModulePDF.class.php
@@ -61,7 +61,7 @@
 
                $this->mInfo = array(
                        EXTINFO::NAME        => 'UEModulePDF',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-uemodulepdf-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-uemodulepdf-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/UniversalExport/UniversalExport.class.php 
b/UniversalExport/UniversalExport.class.php
index 4fd803f..eeecb47 100644
--- a/UniversalExport/UniversalExport.class.php
+++ b/UniversalExport/UniversalExport.class.php
@@ -81,7 +81,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'UniversalExport',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-universalexport-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-universalexport-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/UserManager/UserManager.class.php 
b/UserManager/UserManager.class.php
index 032b9df..2b47511 100644
--- a/UserManager/UserManager.class.php
+++ b/UserManager/UserManager.class.php
@@ -56,7 +56,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'UserManager',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-usermanager-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-usermanager-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Stephan Muggli',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/UserPreferences/UserPreferences.class.php 
b/UserPreferences/UserPreferences.class.php
index 16784c6..9a74699 100644
--- a/UserPreferences/UserPreferences.class.php
+++ b/UserPreferences/UserPreferences.class.php
@@ -57,7 +57,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'UserPreferences',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-userpreferences-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-userpreferences-desc',
                        EXTINFO::AUTHOR => 'Sebastian Ulbricht, Stephan Muggli',
                        EXTINFO::VERSION => 'default',
                        EXTINFO::STATUS => 'default',
diff --git a/UserSidebar/UserSidebar.class.php 
b/UserSidebar/UserSidebar.class.php
index 5e20ae6..f6aca4d 100644
--- a/UserSidebar/UserSidebar.class.php
+++ b/UserSidebar/UserSidebar.class.php
@@ -55,7 +55,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'UserSidebar',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-usersidebar-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-usersidebar-desc',
                        EXTINFO::AUTHOR      => 'Sebastian Ulbricht, Robert 
Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/VisualEditor/VisualEditor.class.php 
b/VisualEditor/VisualEditor.class.php
index f002f97..29f44ef 100644
--- a/VisualEditor/VisualEditor.class.php
+++ b/VisualEditor/VisualEditor.class.php
@@ -201,7 +201,7 @@
                $this->mExtensionType = EXTTYPE::VARIABLE;
                $this->mInfo = array(
                        EXTINFO::NAME => 'VisualEditor',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-visualeditor-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-visualeditor-desc',
                        EXTINFO::AUTHOR => 'Markus Glaser, Sebastian Ulbricht',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/WantedArticle/WantedArticle.class.php 
b/WantedArticle/WantedArticle.class.php
index 9e3b190..99089eb 100644
--- a/WantedArticle/WantedArticle.class.php
+++ b/WantedArticle/WantedArticle.class.php
@@ -71,7 +71,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'WantedArticle',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-wantedarticle-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-wantedarticle-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/WatchList/WatchList.class.php b/WatchList/WatchList.class.php
index 22b640c..f03ab5d 100644
--- a/WatchList/WatchList.class.php
+++ b/WatchList/WatchList.class.php
@@ -59,7 +59,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'WatchList',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-watchlist-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-watchlist-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/WhoIsOnline/WhoIsOnline.class.php 
b/WhoIsOnline/WhoIsOnline.class.php
index 9c897e6..0d72404 100644
--- a/WhoIsOnline/WhoIsOnline.class.php
+++ b/WhoIsOnline/WhoIsOnline.class.php
@@ -83,7 +83,7 @@
                $this->mExtensionType = EXTTYPE::PARSERHOOK;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'WhoIsOnline',
-                       EXTINFO::DESCRIPTION => wfMessage( 
'bs-whoisonline-desc' )->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-whoisonline-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/WidgetBar/WidgetBar.class.php b/WidgetBar/WidgetBar.class.php
index a95f746..91e1e92 100644
--- a/WidgetBar/WidgetBar.class.php
+++ b/WidgetBar/WidgetBar.class.php
@@ -56,7 +56,7 @@
                $this->mExtensionType = EXTTYPE::OTHER;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'WidgetBar',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-widgetbar-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-widgetbar-desc',
                        EXTINFO::AUTHOR      => 'Robert Vogel',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',
diff --git a/WikiAdmin/WikiAdmin.class.php b/WikiAdmin/WikiAdmin.class.php
index 7676e4f..e5d28ca 100644
--- a/WikiAdmin/WikiAdmin.class.php
+++ b/WikiAdmin/WikiAdmin.class.php
@@ -159,7 +159,7 @@
                $this->mExtensionType = EXTTYPE::SPECIALPAGE;
                $this->mInfo = array(
                        EXTINFO::NAME        => 'WikiAdmin',
-                       EXTINFO::DESCRIPTION => wfMessage( 'bs-wikiadmin-desc' 
)->escaped(),
+                       EXTINFO::DESCRIPTION => 'bs-wikiadmin-desc',
                        EXTINFO::AUTHOR      => 'Markus Glaser, Sebastian 
Ulbricht, Mathias Scheer',
                        EXTINFO::VERSION     => 'default',
                        EXTINFO::STATUS      => 'default',

-- 
To view, visit https://gerrit.wikimedia.org/r/186746
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I80bbe7bce5c554250f936438c310e4bf7fd6a583
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BlueSpiceExtensions
Gerrit-Branch: master
Gerrit-Owner: Robert Vogel <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to