From 896da3651e2c6d560a645f202307d6766aa01254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cornelius=20Wei=C3=9F?= Date: Sun, 19 Mar 2006 07:34:41 +0000 Subject: [PATCH] fix for bug #1446050 ( no font selection in htmlarea ) --- phpgwapi/inc/class.html.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpgwapi/inc/class.html.inc.php b/phpgwapi/inc/class.html.inc.php index 08288c5ebb..9ed4006ca0 100644 --- a/phpgwapi/inc/class.html.inc.php +++ b/phpgwapi/inc/class.html.inc.php @@ -437,6 +437,7 @@ class html */ function htmlarea($name,$content='',$style='',$base_href='',$plugins='',$custom_toolbar='',$set_width_height_in_config=false) { + if (!$plugins) $plugins = 'ColorChooser,FontChooser,ContexMenu,TableOperations'; return $this->tinymce($name,$content,$style,$plugins,$base_href); }