]> source.dussan.org Git - nextcloud-server.git/commitdiff
Rename $contacts to $has_contacts, it missed this commit: 7cb74a0
authorMichael Gapczynski <mtgap@owncloud.com>
Thu, 12 Jul 2012 00:28:29 +0000 (20:28 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Thu, 12 Jul 2012 00:29:59 +0000 (20:29 -0400)
apps/contacts/index.php

index c1e33252f56801345414b56da5bb560973a25ec0..fbc3565c4da259d295a3de5cd4566fdea37f33da 100644 (file)
@@ -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);
 }