Implementierung von neuem such algorithmus und entsprechenden anpassungen in anderen dateien

This commit is contained in:
rirat-0
2026-06-02 16:58:12 +02:00
parent 8e3642c668
commit 06930644a6
4 changed files with 32 additions and 18 deletions
+5 -3
View File
@@ -75,10 +75,12 @@ $resultCount = count($results);
<?php foreach ($results as $item): ?>
<div class="s-res-item">
<div class="s-res-content">
<h2 class="s-res-item-title">
<a href="<?php echo $item['link']; ?>" class="s-res-link"><?php echo $item['title']; ?></a>
<h2 class="s-res-item-title">
<a href="index.php?pfad=showArticle&id=<?php echo $item->id; ?>" class="s-res-link">
<?php echo htmlspecialchars($item->title); ?>
</a>
</h2>
<p class="s-res-author">Kategorie: <span class="s-res-author-name">Beitrag</span></p>
<p class="s-res-author">Von: <span class="s-res-author-name"><?php echo htmlspecialchars($item->author); ?></span></p>
</div>
<div class="s-res-arrow">&rarr;</div>
</div>