Screenshots/Crop

* fixed coordinate filter broken after a8edf6c912
This commit is contained in:
Sarjuuk
2022-03-28 00:58:43 +02:00
parent b3e8f5e50f
commit b08d30d043
2 changed files with 11 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ trait TrRequestData
private static function checkIdListUnsigned(string $val) : array
{
if (preg_match('/\d+(,\d+)*/', $val))
if (preg_match('/^\d+(,\d+)*$/', $val))
return array_map('intVal', explode(',', $val));
return [];