From 359e19a19dd45d64d14c7b29461f0fbe4f8a50bd Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Wed, 03 Aug 2011 06:40:29 -0400
Subject: [PATCH] - Fix EOL character in vCard exports (#1487873)
---
program/include/html.php | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/program/include/html.php b/program/include/html.php
index d097278..27eeebb 100644
--- a/program/include/html.php
+++ b/program/include/html.php
@@ -675,8 +675,7 @@
if ($index === null)
$index = $this->rowindex;
- if ($this->rows[$index])
- $this->rows[$index]->attrib = $attr;
+ $this->rows[$index]->attrib = $attr;
}
/**
--
Gitblit v1.9.1