From cbb141d2a527118e4e6970c1803ef20bd2939185 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 25 Jan 2025 15:05:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(pagetype):=20use=20only=20the?= =?UTF-8?q?=20radical=20of=20the=20icon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/helpers/updater.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bl-kernel/helpers/updater.class.php b/bl-kernel/helpers/updater.class.php index ab0e5421..088e8e7d 100644 --- a/bl-kernel/helpers/updater.class.php +++ b/bl-kernel/helpers/updater.class.php @@ -43,8 +43,8 @@ class KoblogUpdater { // if (!file_exists(PATH_DATABASES . 'pagetypes.php')) { $data = array( - 'article' => array('name' => $L->g("Article"), 'plural' => $L->g("Articles"), 'icon'=>'fa-file-text'), - 'static' => array('name' => $L->g("Static page"), 'plural' => $L->g("Static pages"), 'icon'=>'fa-file'), + 'article' => array('name' => $L->g("Article"), 'plural' => $L->g("Articles"), 'icon'=>'file-text'), + 'static' => array('name' => $L->g("Static page"), 'plural' => $L->g("Static pages"), 'icon'=>'file'), ); file_put_contents(PATH_DATABASES . 'pagetypes.php', $dataHead . json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); }