Browse Source

Merge pull request #657 from bttrx/patch-3

Fixes i18n not fully shown for admin/popular view by @bttrx
pull/659/head
Dan 2 years ago
committed by GitHub
parent
commit
d024a5c1ad
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/htmly.php

+ 1
- 1
system/htmly.php View File

@ -832,7 +832,7 @@ get('/admin/popular', function () {
'title' => i18n('Popular_posts') . ' - ' . blog_title(), 'title' => i18n('Popular_posts') . ' - ' . blog_title(),
'description' => strip_tags(blog_description()), 'description' => strip_tags(blog_description()),
'canonical' => site_url(), 'canonical' => site_url(),
'heading' => 'Popular posts',
'heading' => i18n('Popular_posts'),
'page' => $page, 'page' => $page,
'posts' => $posts, 'posts' => $posts,
'is_admin' => true, 'is_admin' => true,


Loading…
Cancel
Save