diff options
author | Evan Winslow <evan@elgg.org> | 2011-03-18 21:28:05 -0700 |
---|---|---|
committer | Evan Winslow <evan@elgg.org> | 2011-03-18 21:28:05 -0700 |
commit | dff32c364b99e57db5ea891ce93f7ab5df9b3258 (patch) | |
tree | ff0cd57619974d1ed9e8c9327434cebba9c7a1f6 /views/default/input/longtext.php | |
parent | e45dc237367658ed750701d1055e975eaef63f19 (diff) | |
download | elgg-dff32c364b99e57db5ea891ce93f7ab5df9b3258.tar.gz elgg-dff32c364b99e57db5ea891ce93f7ab5df9b3258.tar.bz2 |
Removed custom html5 function in favor of core function
Diffstat (limited to 'views/default/input/longtext.php')
-rw-r--r-- | views/default/input/longtext.php | 26 |
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 |