Fixed showing first contact if non is selected.

This commit is contained in:
Thomas Tanghus 2012-01-02 23:14:58 +01:00
parent 85ab3b3924
commit 47548fb8c6
1 changed files with 10 additions and 4 deletions

View File

@ -45,11 +45,17 @@ $id = isset( $_GET['id'] ) ? $_GET['id'] : null;
$details = array();
// FIXME: This cannot work..?
if( !is_null($id)/* || count($contacts)*/){
if(is_null($id)) $id = $contacts[0]['id'];
$vcard = OC_Contacts_App::getContactVCard($id);
$details = OC_Contacts_VCard::structureContact($vcard);
if(is_null($id) && count($contacts) > 0) {
$id = $contacts[0]['id'];
}
$vcard = OC_Contacts_App::getContactVCard($id);
$details = OC_Contacts_VCard::structureContact($vcard);
// if( !is_null($id)/* || count($contacts)*/){
// if(is_null($id)) $id = $contacts[0]['id'];
// $vcard = OC_Contacts_App::getContactVCard($id);
// $details = OC_Contacts_VCard::structureContact($vcard);
// }
// Include Style and Script
OC_Util::addScript('contacts','interface');