X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Fcontact.php;h=b33c97a1f66d2dcd240726510a6e04a4fb50af45;hb=b967de0fef7828e7cf314104ddd147394efb0060;hp=d5975b9c87fcbfc556aec8087ef604fe0389e763;hpb=5443dbf64833b4cfddcc07d43657dcff371550c4;p=readifood.git diff --git a/lib/contact.php b/lib/contact.php index d5975b9..b33c97a 100644 --- a/lib/contact.php +++ b/lib/contact.php @@ -129,9 +129,16 @@ return; } + $candidates = array(); + foreach ($areas as $area) { + if (! count(get_area_contacts($area->getId()))) continue; + $candidates[] = $area; + } + if (! count($candidates)) return; + echo "

Show contacts in area\n"; echo "\n"; @@ -147,9 +154,16 @@ return; } + $candidates = array(); + foreach ($cities as $city) { + if (! count(get_city_contacts($city->getId()))) continue; + $candidates[] = $city; + } + if (! count($candidates)) return; + echo "

Show contacts in city\n"; echo "\n"; @@ -308,7 +322,7 @@ /* Notes. */ echo "\n"; echo " Notes\n"; - echo " \n"; + echo " "; textarea("notes", $contact->getNotes()); echo "\n"; echo "\n"; }