diff options
author | Evan Winslow <evan@elgg.org> | 2011-05-19 16:19:46 -0700 |
---|---|---|
committer | Evan Winslow <evan@elgg.org> | 2011-05-19 16:19:46 -0700 |
commit | eba13eb88fb8d16d94c93c113e7c136c7559881b (patch) | |
tree | 41b90d224763d1afe13190b6e7e48c433a822d55 /views/default/input | |
parent | 0faef2c4468f70be1819a6f62c60ab5cbd6c5cbd (diff) | |
download | elgg-eba13eb88fb8d16d94c93c113e7c136c7559881b.tar.gz elgg-eba13eb88fb8d16d94c93c113e7c136c7559881b.tar.bz2 |
Deleted some unnecessary inputs, added theme previews for all new inputs
Diffstat (limited to 'views/default/input')
-rw-r--r-- | views/default/input/email.php | 12 | ||||
-rw-r--r-- | views/default/input/url.php | 13 |
2 files changed, 0 insertions, 25 deletions
diff --git a/views/default/input/email.php b/views/default/input/email.php deleted file mode 100644 index de98d9c4f..000000000 --- a/views/default/input/email.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php
-$defaults = array(
- 'class' => 'elgg-input-email',
-);
-
-$vars = array_merge($defaults, $vars);
-
-$vars['type'] = 'email';
-
-?>
-
-<input <?php echo elgg_format_attributes($vars); ?> />
\ No newline at end of file diff --git a/views/default/input/url.php b/views/default/input/url.php deleted file mode 100644 index ed3cd08a2..000000000 --- a/views/default/input/url.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php
-
-$defaults = array(
- 'class' => 'elgg-input-url',
-);
-
-$vars = array_merge($defaults, $vars);
-
-$vars['type'] = 'url';
-
-?>
-
-<input <?php echo elgg_format_attributes($vars); ?> />
\ No newline at end of file |