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 8a0ecf1b9657f86a9287d0131e7d835f51128483
parent bab744752c09c60697b0d942f32d1b761636116d
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat,  1 Mar 2025 16:50:46 +0100

fix: ensure that double quotes are used consistently

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

diff --git a/lib/fetch_description.php b/lib/fetch_description.php @@ -19,6 +19,13 @@ $desc_raw = preg_replace( $html ); +/* Ensure that double quotes are used consistently */ +$desc_raw = preg_replace( + '/\'/', + '"', + $desc_raw +); + /* Extract description string */ $desc = preg_replace( '/^.*content="([^"]+)".*$/',