Propose patch in cheditor_php5.php:
/** * An array with textarea attributes * * @param array attributes array( "rows" => 8, "cols" => 60 ); * @return void */ public function setAttributes($attributes) { $this->textareaAttributes = $attributes; }
Re: Propose patch
Anyway, this would allow for systems like mine which set these values themselves. I would very much appreciate being instructed on what more I can do to get this in the next revision if possible.
Thanks!
Re: Propose patch
The real place to propose patches is http://dev.fckeditor.net but I don't see the reason to add this change. $textareaAttributes is marked as public, so I think that you can use that property directly without the need of any extra function.