From fea68aee27ea768bc150784e6f4d1576d2bd6ae1 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 12 Jul 2025 13:15:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Meilleur=20gestion=20des=20flat-?= =?UTF-8?q?list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-plugins/archive/plugin.php | 4 ++-- bl-plugins/tags/plugin.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bl-plugins/archive/plugin.php b/bl-plugins/archive/plugin.php index c8c43055..3cd00920 100644 --- a/bl-plugins/archive/plugin.php +++ b/bl-plugins/archive/plugin.php @@ -44,7 +44,7 @@ class pluginArchives extends Plugin $html = '
'; $html .= '

' . $this->getValue('label') . '

'; $html .= '
'; - $html .= '
    '; + $html .= '
      '; // By default the database of tags are alphanumeric sorted foreach ($archives->db as $key => $fields) { @@ -52,7 +52,7 @@ class pluginArchives extends Plugin ($this->getValue('monthly') && strlen($key) != 4) || (!$this->getValue('monthly') && strlen($key) == 4) ) { - $html .= '
    • '; + $html .= '
    • '; $html .= ''; $html .= $fields['name']; $html .= ''; diff --git a/bl-plugins/tags/plugin.php b/bl-plugins/tags/plugin.php index 7f599e99..850710b9 100644 --- a/bl-plugins/tags/plugin.php +++ b/bl-plugins/tags/plugin.php @@ -34,7 +34,7 @@ class pluginTags extends Plugin $html = '
      '; $html .= '

      ' . $this->getValue('label') . '

      '; $html .= '
      '; - $html .= '
        '; + $html .= '
          '; // By default the database of tags are alphanumeric sorted foreach ($tags->db as $key => $fields) {