From d515ec71003bba98cf1684b29a961a02afe67a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cornelius=20Wei=C3=9F?= Date: Wed, 5 Apr 2006 14:01:09 +0000 Subject: [PATCH] allow to configure more custom options for tinymce --- phpgwapi/inc/class.html.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.html.inc.php b/phpgwapi/inc/class.html.inc.php index 7fcf408eb1..49ddacee42 100644 --- a/phpgwapi/inc/class.html.inc.php +++ b/phpgwapi/inc/class.html.inc.php @@ -536,7 +536,10 @@ class html $tab2a .= ',separator,insertdate,inserttime'; break; default: - // echo $plugin .'
'; + if(strstr($plugin,'=')) + { + $init .= ','. str_replace('=',':',$plugin); + } } } }