From: Christian Weiske Date: Sat, 19 Sep 2020 10:13:52 +0000 (+0200) Subject: Allow push install of The_legend_of_ice_soul X-Git-Tag: v3.0.0~31 X-Git-Url: https://git.cweiske.de/stouyapi.git/commitdiff_plain/bc42453a30a5538e53bfe5524b062ef733949c21 Allow push install of The_legend_of_ice_soul --- diff --git a/www/push-to-my-ouya.php b/www/push-to-my-ouya.php index 12c9077..ae0c44b 100644 --- a/www/push-to-my-ouya.php +++ b/www/push-to-my-ouya.php @@ -9,6 +9,8 @@ * Maximal 30 games per IP to prevent flooding. * * @author Christian Weiske + * @see api/v1/queued_downloads.php + * @see api/v1/queued_downloads_delete.php */ $dbFile = __DIR__ . '/../data/push-to-my-ouya.sqlite3'; $apiGameDir = __DIR__ . '/api/v1/details-data/'; @@ -33,7 +35,7 @@ if (!isset($_GET['game'])) { } $game = $_GET['game']; -$cleanGame = preg_replace('#[^a-zA-Z0-9.]#', '', $game); +$cleanGame = preg_replace('#[^a-zA-Z0-9._]#', '', $game); if ($game != $cleanGame) { header('HTTP/1.0 400 Bad Request'); header('Content-type: text/plain');