Skip to content
Snippets Groups Projects
Commit 869c884b authored by its4you's avatar its4you
Browse files

use decode_html

parent 8bc88aa1
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ class Import_Map_Model extends Vtiger_Base_Model {
foreach($row as $key=>$value) {
if($key == 'content') {
$content = array();
$pairs = explode("&", $value);
$pairs = explode("&", decode_html($value)); // use decode_html
foreach($pairs as $pair) {
list($mappedName, $sequence) = explode("=", $pair);
$mappedName = str_replace('/eq/', '=', $mappedName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment