From c445c6c1628885853951effa413204805d272e6e Mon Sep 17 00:00:00 2001 From: danpros Date: Thu, 14 Mar 2024 01:23:26 +0700 Subject: [PATCH] Update functions.php --- system/includes/functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/includes/functions.php b/system/includes/functions.php index f1c0145..72eff5d 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -2891,9 +2891,10 @@ function not_found($request = null) header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found"); render('404', array( - 'title' => i18n('This_page_doesnt_exist') . ' - ' . blog_title(), + 'title' => generate_title('is_default', i18n('This_page_doesnt_exist')), 'description' => i18n('This_page_doesnt_exist'), 'canonical' => site_url(), + 'metatags' => generate_meta(null, null), 'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('This_page_doesnt_exist'), 'bodyclass' => 'error-404', 'is_404' => true,