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/access.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/access.php')
-rw-r--r-- | views/default/input/access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/input/access.php b/views/default/input/access.php index 90ef403be..1157e45e0 100644 --- a/views/default/input/access.php +++ b/views/default/input/access.php @@ -27,7 +27,7 @@ ?>
-<select name="<?php echo $vars['internalname']; ?>" <?php if (isset($vars['js'])) echo $vars['js']; ?>>
+<select name="<?php echo $vars['internalname']; ?>" <?php if (isset($vars['js'])) echo $vars['js']; ?> <?php if ($vars['disabled']) echo ' disabled="yes" '; ?>>
<?php
foreach($vars['options'] as $key => $option) {
|