summaryrefslogtreecommitdiffstats
path: root/apps/contacts
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-07-11 20:28:29 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-07-11 20:29:59 -0400
commitf496a9dea69ec387eb6979916c2569dc4d81b47e (patch)
treee92d978221b452191f2e92f360efd211c88a8b43 /apps/contacts
parent8890a4128015df0ad57101703d6c164ea54fe4ee (diff)
downloadnextcloud-server-f496a9dea69ec387eb6979916c2569dc4d81b47e.tar.gz
nextcloud-server-f496a9dea69ec387eb6979916c2569dc4d81b47e.zip
Rename $contacts to $has_contacts, it missed this commit: 7cb74a0
Diffstat (limited to 'apps/contacts')
-rw-r--r--apps/contacts/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/index.php b/apps/contacts/index.php
index c1e33252f56..fbc3565c4da 100644
--- a/apps/contacts/index.php
+++ b/apps/contacts/index.php
@@ -15,7 +15,7 @@ OCP\App::checkAppEnabled('contacts');
// Get active address books. This creates a default one if none exists.
$ids = OC_Contacts_Addressbook::activeIds(OCP\USER::getUser());
$has_contacts = (count(OC_Contacts_VCard::all($ids, 0, 1)) > 0 ? true : false); // just to check if there are any contacts.
-if($contacts === false) {
+if($has_contacts === false) {
OCP\Util::writeLog('contacts','index.html: No contacts found.',OCP\Util::DEBUG);
}