summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-10-18 14:01:06 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-10-18 14:01:06 +0000
commit141dd9aa34dbf1c6a0556724ce3fefaacef24b4d (patch)
tree7d714d118a02eb000b31ff5e52cafd294cf963b0
parenta98ca5d09e19d926b796e587732d81d048a76473 (diff)
- One if() too much
git-svn-id: https://svn.roundcube.net/trunk@5345 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/steps/addressbook/func.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/addressbook/func.inc b/roundcubemail/program/steps/addressbook/func.inc
index 0b045c9fd..fa9ff1c66 100644
--- a/roundcubemail/program/steps/addressbook/func.inc
+++ b/roundcubemail/program/steps/addressbook/func.inc
@@ -675,8 +675,7 @@ function rcmail_contact_form($form, $record, $attrib = null)
$content = $fieldset['content'];
}
- if ($content)
- $out .= html::tag('fieldset', null, html::tag('legend', null, Q($fieldset['name'])) . $content) ."\n";
+ $out .= html::tag('fieldset', null, html::tag('legend', null, Q($fieldset['name'])) . $content) ."\n";
}
if ($edit_mode) {