diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-22 16:39:56 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-22 16:39:56 +0000 |
commit | 4c18a0cf43c7ab7d72532ec10814d7f55ac6b477 (patch) | |
tree | 7348d115d03e7e0bb3202de72ccbc597deb57ed1 /views/default/input/text.php | |
parent | f4efcff4412723c25ad91916e47219328af99d2e (diff) | |
download | elgg-4c18a0cf43c7ab7d72532ec10814d7f55ac6b477.tar.gz elgg-4c18a0cf43c7ab7d72532ec10814d7f55ac6b477.tar.bz2 |
Disabled support added to forms.
git-svn-id: https://code.elgg.org/elgg/trunk@1495 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/input/text.php')
-rw-r--r-- | views/default/input/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/input/text.php b/views/default/input/text.php index 4b040445a..6f3b6ba4b 100644 --- a/views/default/input/text.php +++ b/views/default/input/text.php @@ -14,9 +14,9 @@ * @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
*/
?>
-<input type="text" <?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="input-text"/>
\ No newline at end of file |