Skip to content
This repository has been archived by the owner on Sep 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #7 from M6Web/feature/suppression-html_entity_decode
Browse files Browse the repository at this point in the history
suppression du html_entity_decode
  • Loading branch information
nyx4 committed Aug 29, 2013
2 parents 4bbc84c + ec6c01e commit 267ce55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/M6Web/Behat/SEOExtension/Loader/CSVExampleLoader.php
Expand Up @@ -65,7 +65,7 @@ private function read($file)
// We loop on every line
foreach (file($file) as $line => $data) {

$data = str_getcsv (html_entity_decode(utf8_encode(trim($data))), ";", '"');
$data = str_getcsv (utf8_encode(trim($data)), ";", '"');

if ($line == 0) {
$columns = $this->getColumns($data);
Expand Down

0 comments on commit 267ce55

Please sign in to comment.