diff options
author | Thomas Arendsen Hein <thomas@intevation.de> | 2007-11-21 16:17:24 (GMT) |
---|---|---|
committer | Thomas Arendsen Hein <thomas@intevation.de> | 2007-11-21 16:17:24 (GMT) |
commit | 04560f3e4fcf071690921df518f05de90ccc1ebf (patch) | |
tree | c3c2e4af539a6e8180ef33af578808c15d9abd48 | |
parent | e8532fa91d1d3eb20f49367206183bce2fa3ea85 (diff) | |
download | kolab-webadmin-2.1-stable.tar.gz |
Fix kolab/issue1912 (some field descriptions missing in web admin interface)2.1-stable
-rw-r--r-- | php/admin/include/form.class.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/php/admin/include/form.class.php b/php/admin/include/form.class.php index 3c154d4..cdb6a53 100644 --- a/php/admin/include/form.class.php +++ b/php/admin/include/form.class.php @@ -154,6 +154,7 @@ class KolabForm { list($uname,$domain) = split('@',$value['value']); } if( ereg( 'readonly', $value['attrs'] ) ) { + $str .= '<td><label>'.$value['name'].'</label></td>'; $str .= '<td><p class="ctrl">'.MySmarty::htmlentities($value['value']).'</p><input name="user_'.$key.'" type="hidden" value="'. MySmarty::htmlentities($uname).'" /><input name="domain_'.$key.'" type="hidden" value="'. MySmarty::htmlentities($domain).'" /></td>'; |