print_textarea(false,...) error in browser status bar

print_textarea(false,...) error in browser status bar

by Vitor Gonçalves -
Number of replies: 1

If I use
print_textarea(false, 3, 40, 680, 400, description', "$form->description");
or
print '<textarea name="description" rows="3" cols="40" wrap ="virtual">'.$form->description.'</textarea>'; 

in the browser status bar appear de error: HTMLarea not defined

but if I use
print_textarea($usehtmleditor, 3, 40, 680, 400, description', "$form->description");
No error appears in the browser Status bar...

How can I clean this error?
(Thanks)

Average of ratings: -
In reply to Vitor Gonçalves

Re: print_textarea(false,...) error in browser status bar

by Timothy Takemoto -

I too would like to know the answer to this question from 5 years ago.
I note that
print_textarea(false, 3, 40, 680, 400, description', "$form->description");
will work, even though there is an error in the status bar.
Tim