diff --git a/postgres_searchindex/contrib/djangocms/base.py b/postgres_searchindex/contrib/djangocms/base.py index 3c304e7..6da080c 100644 --- a/postgres_searchindex/contrib/djangocms/base.py +++ b/postgres_searchindex/contrib/djangocms/base.py @@ -25,7 +25,7 @@ def get_placeholder_content(self, obj, language, request): plugins = self.get_plugin_queryset(language).filter(placeholder=placeholder) text = "" for base_plugin in plugins: - text += self.get_plugin_search_text(base_plugin, request) + text += " " + self.get_plugin_search_text(base_plugin, request) return text def get_plugin_search_text(self, base_plugin, request):