1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-10 17:36:21 +00:00

Missing parenthesis

This commit is contained in:
Loic Blot 2014-09-30 05:42:02 +00:00
parent addc336d12
commit 42df9cc510

View File

@ -81,7 +81,7 @@ class Application extends App {
$cm = $this->c['ContactsManager'];
$result = $cm->search('',array('FN'));
foreach ($result as $r) {
if (isset $r["phone"]) {
if (isset ($r["phone"])) {
self::$contacts[$r["phone"]] = $r["FN"];
}
}