merge fixups
[catagits/Reaction.git] / root / base / textarea
CommitLineData
7adfd53f 1[%
2
3PROCESS field_base;
4
5control_block = 'textarea_control';
6
7BLOCK textarea_control;
8
9 attrs.maxlength = '';
10 %]<textarea id="[% id_attr %]" [% connect_control(self, 'value');
11 process_attrs(attrs) %]>[% self.value | html; '</textarea>';
12
13END;
14
15%]