From 2a50d23d45cdabe06c744f35706bca9fa8d4ca63 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 14 Mar 2013 09:37:17 +0100 Subject: [PATCH] Fix: Bad link --- htdocs/contact/list.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/htdocs/contact/list.php b/htdocs/contact/list.php index 321e793c71448..2c8338082e681 100755 --- a/htdocs/contact/list.php +++ b/htdocs/contact/list.php @@ -80,9 +80,8 @@ $titre.=' ('.$langs->trans("OthersNotLinkedToThirdParty").')'; $urlfiche=""; } -if ($view == '') { $text=" (Vue Telephones) (Vue EMail)"; } -if ($view == 'phone') { $text=" (Vue Telephones) (Vue EMail)"; } -if ($view == 'mail') { $text=" (Vue Telephones) (Vue EMail)"; } +if ($view == 'phone') { $text=" (Vue Telephones) (Vue EMail)"; } +if ($view == '' || $view == 'mail') { $text=" (Vue Telephones) (Vue EMail)"; } if ($view == 'recent') { $text=" (Recents)"; } if (! empty($text)) $titre.= " $text";