aboutsummaryrefslogtreecommitdiffstats
path: root/root/base/dt_textfield
diff options
context:
space:
mode:
Diffstat (limited to 'root/base/dt_textfield')
-rw-r--r--root/base/dt_textfield16
1 files changed, 0 insertions, 16 deletions
diff --git a/root/base/dt_textfield b/root/base/dt_textfield
deleted file mode 100644
index 749e3ca..0000000
--- a/root/base/dt_textfield
+++ /dev/null
@@ -1,16 +0,0 @@
-[%
-
-PROCESS field_base;
-
-control_block = 'textfield_control';
-
-BLOCK textfield_control;
-
- attrs.maxlength = '255'; # SimpleStr requires <= 255
- %]<input type="text" [% IF id_attr; 'id="'; id_attr; '"'; END; connect_control(self, 'value_string');
- ' value="'; self.value_string | html; '"'; process_attrs(attrs) %] />[%
- attrs.maxlength = '';
-
-END;
-
-%]