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:
M | lib/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="([^"]+)".*$/',