mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-04 10:14:13 +08:00
[Legacy] Fix special character enconding on alerts
This commit is contained in:
parent
a075a5a10e
commit
b1dcc32410
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class AlertNameMapper implements FieldMapperInterface
|
||||||
$nameValue = preg_replace('/^' . $searchString . '/', '', $nameValue);
|
$nameValue = preg_replace('/^' . $searchString . '/', '', $nameValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
$container[$name] = $nameValue;
|
$container[$name] = html_entity_decode($nameValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue