TickTackk Well-known member Mar 19, 2015 #1 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
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
Jeremy in memoriam 1991-2020 Mar 19, 2015 #2 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.
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.
Mike XenForo developer Staff member Mar 19, 2015 #3 No this is valid. -1 represents filtering to none.