From a505dd2ebfa30174d9f02b5c8eef5e1f2339f229 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Thu, 01 Dec 2011 08:03:46 -0500
Subject: [PATCH] - Fix issue where "S: Error: Success" was printed to debug log
---
program/include/rcmail.php | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 6e07c9a..6f0ba2c 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -453,8 +453,7 @@
}
// add to the 'books' array for shutdown function
- if (!isset($this->address_books[$id]))
- $this->address_books[$id] = $contacts;
+ $this->address_books[$id] = $contacts;
return $contacts;
}
--
Gitblit v1.9.1