Index: /MediaWiki/trunk/extensions/FCKeditor/FCKeditor.body.php
===================================================================
--- /MediaWiki/trunk/extensions/FCKeditor/FCKeditor.body.php	(revision 580)
+++ /MediaWiki/trunk/extensions/FCKeditor/FCKeditor.body.php	(revision 581)
@@ -91,5 +91,13 @@
     public function onParserAfterTidy(&$parser, &$text)
     {
-        global $wgUseTeX;
+        global $wgUseTeX, $wgUser, $wgTitle;
+        
+        if (!$wgUser->getOption( 'showtoolbar' ) || $wgUser->getOption( 'riched_disable' )) {
+            return true;
+        }
+
+        if (in_array($wgTitle->getNamespace(), $this->getExcludedNamespaces())) {
+            return true;
+        }
         
         if ($wgUseTeX) {
