1
0
mirror of https://github.com/php/phd.git synced 2026-03-23 22:52:05 +01:00

Decode HTML entities in descriptions (#196)

This commit is contained in:
Luffy
2025-04-22 10:20:55 +08:00
committed by GitHub
parent 40bc3ea30a
commit 10303e6e88

View File

@@ -274,7 +274,7 @@ contributors($setup);
$entries[] = [
$index["sdesc"], $index["filename"], $index["element"]
];
$descriptions[$id] = $index["ldesc"];
$descriptions[$id] = html_entity_decode($index["ldesc"]);
}
return [$entries, $descriptions];
}