From a00883c100db9980a44fcd139d89c54bfe68a55a Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 9 Dec 2022 10:54:28 +0100 Subject: [PATCH] set class of container, put terms in span --- views/bootstrap/class.IndexInfo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/views/bootstrap/class.IndexInfo.php b/views/bootstrap/class.IndexInfo.php index dc0e0f0f5..d578638c9 100644 --- a/views/bootstrap/class.IndexInfo.php +++ b/views/bootstrap/class.IndexInfo.php @@ -44,11 +44,11 @@ class SeedDMS_View_IndexInfo extends SeedDMS_Theme_Style { $numDocs = $index->count(); echo "".$numDocs." ".getMLText('documents').""; - $this->contentContainerStart(); + $this->contentContainerStart('fulltextinfo'); for ($id = 0; $id < $numDocs; $id++) { if (!$index->isDeleted($id)) { if($hit = $index->getDocument($id)) - echo "document_id."\">".htmlspecialchars($hit->title)."\n"; + echo "document_id."\">".htmlspecialchars($hit->title)." "; } } $this->contentContainerEnd(); @@ -62,10 +62,10 @@ class SeedDMS_View_IndexInfo extends SeedDMS_Theme_Style { if($field) $this->contentContainerEnd(); echo "
".htmlspecialchars($term->field)."
"; - $this->contentContainerStart(); + $this->contentContainerStart('fulltextinfo'); $field = $term->field; } - echo htmlspecialchars($term->text)."\n"; + echo ''.htmlspecialchars($term->text)." "; // echo "_occurrence."\">".htmlspecialchars($term->text)."\n"; } $this->contentContainerEnd();