Closed (fixed)
Project:
FCKeditor - WYSIWYG HTML editor
Version:
master
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
6 Jan 2008 at 12:26 UTC
Updated:
7 Jan 2008 at 16:25 UTC
Hello,
I am the author of the Drigg module ( http://drupal.org/project/drigg ).
I have just received this:
Now... before I spend the next week figuring this out, do you have any pointers for me?
In Drigg's code, I have:
$form['title'] = array(
'#type' => 'textfield',
'#title' => t('Story\'s title'),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
'#weight' => -7,
'#default_value' => $node->title);
$form['body'] = array(
'#type' => 'textarea',
'#title' => t('Story\'s description'),
'#default_value' => $node->body,
'#weight' => -6,
'#required' => FALSE );
Am I doing something sillily lame?
Thanks in advance for any help,
Merc.
Comments
Comment #1
mercmobily commentedHi,
Fixed title - sorry.
Merc.
Comment #2
jadwigo commentedfckeditor usually ignores textareas of five lines or less - which is the default. If you set the rows to more than five it should work
Comment #3
wwalc commentedOk, mwille solved it by himself - just like jadwigo wrote, it was the problem with configuring FCKeditor correctly.
http://drupal.org/node/206880
Comment #4
mercmobily commentedHi,
Thank you!
Merc.