As designed Wrong filter

TickTackk

Well-known member
PHP:
$prefixFilter = $this->_input->filterSingle('prefix_id', XenForo_Input::INT);
should be
PHP:
$prefixFilter = $this->_input->filterSingle('prefix_id', XenForo_Input::UINT);
under Resource controller
 
Unless you have a massive amount of prefixes (over 2 billion), this won't be an issue because the bit used to signify positive/negative won't change and will always signal positive.
 
Top Bottom