edit POPULAR_TAGS to IMPORTANT_TAGS

This commit is contained in:
2025-04-10 13:40:25 +04:00
parent ed9027a237
commit 8245bfe54b
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -32,8 +32,8 @@
<h3 class="footer-title">Hashtags</h3>
<ul class="footer-links">
<?php
if (defined('POPULAR_TAGS') && !empty(POPULAR_TAGS)):
foreach (POPULAR_TAGS as $tag):
if (defined('IMPORTANT_TAGS') && !empty(IMPORTANT_TAGS)):
foreach (IMPORTANT_TAGS as $tag):
$encodedTag = urlencode('#' . $tag);
?>
<li><a href="recherche.php?q=<?php echo $encodedTag; ?>"><?php echo htmlspecialchars($tag); ?></a></li>