From 09e1667a733566429a05adff5980e04e23ed8d88 Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Mon, 29 Dec 2008 16:11:25 +0100 Subject: [PATCH] Fix syntax error. Signed-off-by: Florent Bruneau --- upgrade/newdirectory-0.0.1/phones.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade/newdirectory-0.0.1/phones.php b/upgrade/newdirectory-0.0.1/phones.php index 63018a0..274c407 100755 --- a/upgrade/newdirectory-0.0.1/phones.php +++ b/upgrade/newdirectory-0.0.1/phones.php @@ -172,7 +172,7 @@ function guess_phone_type($str_type, $phone) } } - if ((strpos($str_type, 'mob') !== false) || (strpos($str_type, 'cell') !== false) || (strpos($str_type, 'port') !== false)) || (strpos($str_type, 'ptb') !== false) { + if ((strpos($str_type, 'mob') !== false) || (strpos($str_type, 'cell') !== false) || (strpos($str_type, 'port') !== false) || (strpos($str_type, 'ptb') !== false)) { if (substr($phone, 3) == '336' || substr($phone, 2) != '33') { return 'mobile'; //for France check if number is a mobile one } else { -- 2.1.4