The problem is likely in the call to:
Code:
zen_draw_textarea_field('field_title', 25, 5);
This function is expecting the format of the values in the parenthesis to be:
Code:
function zen_draw_textarea_field($name, $width, $height, $text = '', $parameters = '', $reinsert_value = true)
Soo.... if you have too many numbers (arguments) listed, it is going to think that one of them is the text that should show in the area as text rather than what it was originally intended for - in this case to make the height of the text area 5 rows.
Bookmarks