diff options
-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>'; |