From 4100242b93ff371daf2ff8ebfccbd5038d5f4809 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Tue, 18 Oct 2011 10:01:06 -0400
Subject: [PATCH] - One if() too much

---
 program/steps/addressbook/func.inc |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc
index 0b045c9..fa9ff1c 100644
--- a/program/steps/addressbook/func.inc
+++ b/program/steps/addressbook/func.inc
@@ -675,8 +675,7 @@
             $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) {

--
Gitblit v1.9.1