1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-23 06:13:09 +00:00

Missing parenthesis

This commit is contained in:
Loic Blot
2014-09-30 05:42:02 +00:00
parent addc336d12
commit 42df9cc510
+1 -1
View File
@@ -81,7 +81,7 @@ class Application extends App {
$cm = $this->c['ContactsManager']; $cm = $this->c['ContactsManager'];
$result = $cm->search('',array('FN')); $result = $cm->search('',array('FN'));
foreach ($result as $r) { foreach ($result as $r) {
if (isset $r["phone"]) { if (isset ($r["phone"])) {
self::$contacts[$r["phone"]] = $r["FN"]; self::$contacts[$r["phone"]] = $r["FN"];
} }
} }