fix_csv_export.php
1 |
diff --git a/inc/html.class.php b/inc/html.class.php |
---|---|
2 |
index dcfa768..239822c 100644 |
3 |
--- a/inc/html.class.php
|
4 |
+++ b/inc/html.class.php
|
5 |
@@ -82,6 +82,8 @@ class Html { |
6 |
'cdata' => 1, // DROP |
7 |
)); |
8 |
|
9 |
+ $value = html_entity_decode($value); |
10 |
+ |
11 |
/*
|
12 |
$specialfilter = array('@<span[^>]*?x-hidden[^>]*?>.*?</span[^>]*?>@si'); // Strip ToolTips
|
13 |
$value = preg_replace($specialfilter, ' ', $value);
|
14 |
|