Browse Source

Update functions.php

Add translation for 404-page title
pull/512/head
vallyol 4 years ago
committed by GitHub
parent
commit
18acadadcc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      system/includes/functions.php

+ 1
- 1
system/includes/functions.php View File

@ -2304,7 +2304,7 @@ function not_found()
header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found"); header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
render('404', array( render('404', array(
'title' => 'This page doesn\'t exist! - ' . blog_title(),
'title' => i18n('This_page_doesnt_exist') . ' - ' . blog_title(),
'description' => '404 Not Found', 'description' => '404 Not Found',
'canonical' => site_url(), 'canonical' => site_url(),
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; 404 Not Found', 'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; 404 Not Found',


Loading…
Cancel
Save