From: Christian Weiske Date: Wed, 15 Jan 2020 19:39:32 +0000 (+0100) Subject: Fix ? in category URLs X-Git-Tag: v1.0.0~13 X-Git-Url: https://git.cweiske.de/stouyapi.git/commitdiff_plain/7d770e0bd986b49e721f197e244ea70767b5e46f Fix ? in category URLs --- diff --git a/bin/import-game-data.php b/bin/import-game-data.php index 0dc4926..29d4172 100755 --- a/bin/import-game-data.php +++ b/bin/import-game-data.php @@ -648,7 +648,7 @@ function buildDiscoverGameTile($game) function categoryPath($title) { - return str_replace(['/', '\\', ' ', '+'], '_', $title); + return str_replace(['/', '\\', ' ', '+', '?'], '_', $title); } function getAllAges($games)