aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/longtext.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/input/longtext.php')
-rw-r--r--views/default/input/longtext.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/views/default/input/longtext.php b/views/default/input/longtext.php
deleted file mode 100644
index 1020ef640..000000000
--- a/views/default/input/longtext.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-/**
- * Elgg long text input
- * Displays a long text input field
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- *
- * @uses $vars['value'] The current value, if any
- * @uses $vars['js'] Any Javascript to enter into the input tag
- * @uses $vars['internalname'] The name of the input field
- *
- */
-
-$defaults = array(
- 'class' => 'input-richtext',
-);
-
-$value = $vars['value'];
-unset($vars['value']);
-
-$attributes = html5_get_html_attributes(array_merge($defaults, $vars));
-
-echo "<textarea $attributes>$value</textarea>"; \ No newline at end of file