Actions
Bug #37534
closedFiltering repositories on RH Repos page gives incorrect results
Description
On the Red Hat Repositories page, searching for a keyword only (without field names) does a preliminary SQL query to the katello_contents table:
SELECT "katello_contents"."cp_content_id" FROM "katello_contents" WHERE (label = 'coreservices')
The problem here is that the operator being used is =, which only matches exact results. Instead we should use the ~ operator.
Actions