diff options
Diffstat (limited to 'views/default/input/longtext.php')
-rw-r--r-- | views/default/input/longtext.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/views/default/input/longtext.php b/views/default/input/longtext.php index e21c96a59..85c3f8186 100644 --- a/views/default/input/longtext.php +++ b/views/default/input/longtext.php @@ -16,7 +16,10 @@ * @uses $vars['internalname'] The name of the input field
*
*/
-
+ + $class = $vars['class']; + if (!$class) $class = "input-textarea"; +
?>
-<textarea class="input-textarea" name="<?php echo $vars['internalname']; ?>" <?php if ($vars['disabled']) echo ' disabled="yes" '; ?> <?php echo $vars['js']; ?>><?php echo $vars['value']; ?></textarea>
\ No newline at end of file +<textarea class="<?php echo $class; ?>" name="<?php echo $vars['internalname']; ?>" <?php if ($vars['disabled']) echo ' disabled="yes" '; ?> <?php echo $vars['js']; ?>><?php echo $vars['value']; ?></textarea>
\ No newline at end of file |