1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

TinyMce changes. - no longer need to declare the ID of the textarea element. Just include the class e-wysiwyg. eg. <textarea class='e-wysiwyg tbox' ..... />

This commit is contained in:
CaMer0n
2009-07-14 11:05:54 +00:00
parent 747b81c9bf
commit 3368ac6104
20 changed files with 96 additions and 107 deletions

View File

@@ -9,8 +9,8 @@
* Form Handler
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
* $Revision: 1.31 $
* $Date: 2009-07-14 03:18:16 $
* $Revision: 1.32 $
* $Date: 2009-07-14 11:05:52 $
* $Author: e107coders $
*
*/
@@ -127,7 +127,7 @@ class e_form
function bbarea($name, $value, $help_mod = '', $help_tagid='')
{
$options = array('class' => 'tbox large');
$options = array('class' => 'tbox large e-wysiwyg');
if(!defsettrue('e_WYSIWYG'))
{
require_once(e_HANDLER."ren_help.php");