DiscussionModel::removeFilterSet PHP Method

removeFilterSet() public static method

Removes a filter set from the allowed filter array with the passed set key.
public static removeFilterSet ( string $setKey )
$setKey string The key of the filter to remove.
    public static function removeFilterSet($setKey)
    {
        if (val($setKey, self::$allowedFilters)) {
            unset(self::$allowedFilters[$setKey]);
        }
    }