From 8ce56ecc28571b37b0d02c23db78e754bd210798 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Sun, 14 Dec 2008 18:35:42 +0100 Subject: [PATCH] Allows users to add more than one entreprise at the same time (Ooops). --- include/validations/entreprises.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/validations/entreprises.inc.php b/include/validations/entreprises.inc.php index da676a8..a329eaa 100644 --- a/include/validations/entreprises.inc.php +++ b/include/validations/entreprises.inc.php @@ -54,8 +54,7 @@ class EntrReq extends Validate $this->tel = $_tel; $this->fax = $_fax; - $separators = array("&", "(", ")", "-", "_", ",", ";", ".", ":", "/", "\\", "\'", "\""); - $replacement = array(" ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "); + $_name = str_replace(array("&", "(", ")", "-", "_", ",", ";", ".", ":", "/", "\\", "\'", "\""), " ", $_name); $name = explode(" ", $_name); $name_array = array_map("trim", $name); $length = count($name_array); -- 2.1.4