pub / tw2html

Checks online status of streams on twitch.tv and lets you watch them
git clone https://src.jayvii.de/pub/tw2html.git
Home | Log | Files | Exports | Refs | README | RSS

commit bab744752c09c60697b0d942f32d1b761636116d
parent 74e3601a716758b98a2e25f35f3cd9ed1fd2feb4
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat,  1 Mar 2025 16:47:33 +0100

fix: decode description characters

Diffstat:
Mlib/fetch_description.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/fetch_description.php b/lib/fetch_description.php @@ -26,7 +26,7 @@ $desc = preg_replace( $desc_raw ); -/* return the extracted description line */ -echo $desc; +/* return the html decoded description line */ +echo htmlspecialchars_decode($desc); ?>