Commit 682f7dbb authored by Stéphane Bouvry's avatar Stéphane Bouvry
Browse files

L'extracteur de personne/organisation ignore les entrées vides

parent 0e5fd367
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -180,7 +180,8 @@ class ConnectorActivityCSVWithConf implements ConnectorInterface
        } else {
            $values = explode($separator, $value);
            foreach ($values as $v) {
                $out[] = trim($v);
                $extracted = trim($v);
                if( $extracted != "" ) $out[] = trim($v);
            }
        }
        return $out;