Fix bug oc-413: PHP fatal error in contacts page when no contacts in ownCloud.

remotes/origin/stable4
Thomas Tanghus 13 years ago
parent 660951dc64
commit b71cf1a4f9
  1. 16
      apps/contacts/index.php

@ -43,17 +43,15 @@ if(count($categories) == 0) {
$vcaddressbookids[] = $vcaddressbook['id'];
}
$vccontacts = OC_Contacts_VCard::all($vcaddressbookids);
if(count($vccontacts) == 0) {
bailOut(OC_Contacts_App::$l10n->t('No contacts found.'));
}
if(count($vccontacts) > 0) {
$cards = array();
foreach($vccontacts as $vccontact) {
$cards[] = $vccontact['carddata'];
}
$cards = array();
foreach($vccontacts as $vccontact) {
$cards[] = $vccontact['carddata'];
OC_Contacts_App::$categories->rescan($cards);
$categories = OC_Contacts_App::$categories->categories();
}
OC_Contacts_App::$categories->rescan($cards);
$categories = OC_Contacts_App::$categories->categories();
}
}

Loading…
Cancel
Save