diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-11 12:08:44 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-11 12:08:44 +0200 |
commit | ae80b5a309be69a47b438e2dc1e342735b5e22aa (patch) | |
tree | 09b7d8d62b1499d18522891aaca5212df6c76239 /program/include | |
parent | c6406eb1a9c0ea1f0d523af74fe16bad8f885dc9 (diff) |
Fix error when there's no writeable addressbook source (#1489162)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 22d081130..fd625ba4d 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -228,6 +228,11 @@ class rcmail extends rcube } if (!$contacts) { + // there's no default, just return + if ($default) { + return null; + } + self::raise_error(array( 'code' => 700, 'type' => 'php', 'file' => __FILE__, 'line' => __LINE__, |