Project

General

Profile

Actions

Bug #5674

closed

pkg_edit - XML tag 'textarea' missing rows, cols and wrap options

Added by BBcan177 . over 8 years ago. Updated about 8 years ago.

Status:
Resolved
Priority:
Normal
Assignee:
Category:
-
Target version:
-
Start date:
12/21/2015
Due date:
% Done:

0%

Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
Affected Architecture:

Description

textarea is missing code to define the rows, cols and wrap values.

(suggest setting some default values)

$rows = $pkga['rows'] ?: '10';
$cols = $pkga['cols'] ?: '50';
$wrap = $pkga['wrap'] ?: 'wrap="off style="white-space:nowr

Adding the following: (Note- cols is not being defined with this setting below).

>setAttribute('rows', $rows)
>setAttribute('cols', $cols)
->setAttribute('wrap', $wrap);
Actions

Also available in: Atom PDF