diff --git a/src/system/helpers.cpp b/src/system/helpers.cpp index 3ab043b44..4e1152323 100644 --- a/src/system/helpers.cpp +++ b/src/system/helpers.cpp @@ -425,12 +425,19 @@ std::string& htmlEntityDecode(std::string& text) }; decode_table dt[] = { - {" ", " "}, + {" ", " "}, {"&", "&"}, {"<", "<"}, {">", ">"}, {"\"", """}, {"'", "'"}, + {"€", "€"}, + {"–", "–"}, + {"“", "“"}, + {"”", "”"}, + {"„", "„"}, + {"•", "•"}, + {"…", "…"}, {NULL, NULL} }; for (int i = 0; dt[i].code != NULL; i++)