From 7d770e0bd986b49e721f197e244ea70767b5e46f Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 15 Jan 2020 20:39:32 +0100 Subject: [PATCH] Fix ? in category URLs --- bin/import-game-data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2