diff options
Diffstat (limited to 'views/default/input/email.php')
-rw-r--r-- | views/default/input/email.php | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/views/default/input/email.php b/views/default/input/email.php index 6d1bed19c..797fa582f 100644 --- a/views/default/input/email.php +++ b/views/default/input/email.php @@ -1,12 +1 @@ -<?php
-$defaults = array(
- 'placeholder' => elgg_echo('placeholder:email'),
-);
-
-$overrides = array(
- 'type' => 'email',
-);
-
-$args = array_merge($defaults, $vars, $overrides);
-
-echo elgg_view('html/input', $args);
\ No newline at end of file +<input type="email" <?php echo html5_get_html_attributes($vars); ?> />
\ No newline at end of file |