Merged in [18904] from fenton@bluepopcorn.net:

Corrected template to remove spurious No Documents Match warning. Fixes #3148.
 - Legacy-Id: 18919
Note: SVN reference [18904] has been migrated to Git commit 3c1c651322
This commit is contained in:
Robert Sparks 2021-03-22 22:07:04 +00:00
commit c13db95673

View file

@ -6,7 +6,11 @@
{% block group_content %}
{% origin %}
{% include "doc/search/search_results.html" %}
{% if docs_related %}
{% include "doc/search/search_results.html" with skip_no_matches_warning=True %}
{% else %}
{% include "doc/search/search_results.html" %}
{% endif %}
{% include "doc/search/search_results.html" with docs=docs_related meta=meta_related skip_no_matches_warning=True %}
{% include "community/list_menu.html" %}