aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/text.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/input/text.php')
-rw-r--r--views/default/input/text.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/views/default/input/text.php b/views/default/input/text.php
index 6f3b6ba4b..3f7667c4f 100644
--- a/views/default/input/text.php
+++ b/views/default/input/text.php
@@ -14,9 +14,14 @@
* @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
- * @uses $vars['disabled'] If true then control is read-only
+ * @uses $vars['disabled'] If true then control is read-only
+ * @uses $vars['class'] Class override
*/
-
+
+
+ $class = $vars['class'];
+ if (!$class) $class = "input-text";
+
?>
-<input type="text" <?php if ($vars['disabled']) echo ' disabled="yes" '; ?> <?php echo $vars['js']; ?> name="<?php echo $vars['internalname']; ?>" value="<?php echo htmlentities($vars['value']); ?>" class="input-text"/> \ No newline at end of file
+<input type="text" <?php if ($vars['disabled']) echo ' disabled="yes" '; ?> <?php echo $vars['js']; ?> name="<?php echo $vars['internalname']; ?>" value="<?php echo htmlentities($vars['value']); ?>" class="<?php echo $class ?>"/> \ No newline at end of file