From f9d6e727c068e6dace53910718fe55193dc41152 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 16 Sep 2004 21:38:14 +0000 Subject: [PATCH] removed the HtmlTidy plugin from the defaults, as it breaks the source edit mode (<>) if tidy is not installed --- phpgwapi/inc/class.html.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.html.inc.php b/phpgwapi/inc/class.html.inc.php index 49038c5418..7aca4c9b34 100644 --- a/phpgwapi/inc/class.html.inc.php +++ b/phpgwapi/inc/class.html.inc.php @@ -249,7 +249,7 @@ class html */ function htmlarea($name,$content='',$style='',$base_href='',$plugins='') { - if (!$plugins) $plugins = 'ContextMenu,TableOperations,SpellChecker,HtmlTidy'; + if (!$plugins) $plugins = 'ContextMenu,TableOperations,SpellChecker'; if (!$style) $style = 'width:100%; min-width:500px; height:300px;'; if (!is_object($GLOBALS['phpgw']->js))