Pages/Item

* fixed fractional buy price for items sold in stacks in infobox (fixes #362)
 * fixed filter criteria enums being generally invalid
This commit is contained in:
Sarjuuk
2024-06-07 16:37:55 +02:00
parent e873d8cbd0
commit fc86825b15
2 changed files with 36 additions and 7 deletions

View File

@@ -1254,7 +1254,7 @@ abstract class Filter
$unsetme = true;
break;
case FILTER_CR_ENUM:
if (!Util::checkNumeric($_crs[$i], NUM_REQ_INT))
if (!Util::checkNumeric($_crs[$i], NUM_CAST_INT))
$unsetme = true;
break;
}