Skip to content

Commit

Permalink
Fix title issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBaiame committed Dec 5, 2018
1 parent 8ecb7a9 commit 641e9a0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions controllers/admin/AdminPsMboModuleController.php
Expand Up @@ -172,6 +172,7 @@ public function displayAjaxGetModulesList()

$modules = $this->getPresentedProducts($modules);
foreach ($modules as $key => &$module) {
$module['attributes']['displayName'] = html_entity_decode($module['attributes']['displayName']);
$module['attributes']['description'] = html_entity_decode($module['attributes']['description']);
$module['attributes']['description'] = htmlspecialchars_decode(
$module['attributes']['description'],
Expand Down

1 comment on commit 641e9a0

@MrBaiame
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix #74

Please sign in to comment.