Browse Source

Update htmly.php

pull/640/head
danpros 2 years ago
parent
commit
9a315d8a4b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      system/htmly.php

+ 4
- 4
system/htmly.php View File

@ -1013,11 +1013,11 @@ get('/admin/scheduled', function () {
if (empty($posts) || $page < 1) { if (empty($posts) || $page < 1) {
render('scheduled', array( render('scheduled', array(
'title' => 'Scheduled posts' . ' - ' . blog_title(),
'title' => i18n('Scheduled_posts') . ' - ' . blog_title(),
'description' => strip_tags(blog_description()), 'description' => strip_tags(blog_description()),
'canonical' => site_url(), 'canonical' => site_url(),
'page' => $page, 'page' => $page,
'heading' => 'Scheduled posts',
'heading' => i18n('Scheduled_posts'),
'posts' => null, 'posts' => null,
'about' => $author->about, 'about' => $author->about,
'name' => $author->name, 'name' => $author->name,
@ -1031,10 +1031,10 @@ get('/admin/scheduled', function () {
} }
render('scheduled', array( render('scheduled', array(
'title' => 'Scheduled posts' . ' - ' . blog_title(),
'title' => i18n('Scheduled_posts') . ' - ' . blog_title(),
'description' => strip_tags(blog_description()), 'description' => strip_tags(blog_description()),
'canonical' => site_url(), 'canonical' => site_url(),
'heading' => 'Scheduled posts',
'heading' => i18n('Scheduled_posts'),
'page' => $page, 'page' => $page,
'posts' => $posts, 'posts' => $posts,
'about' => $author->about, 'about' => $author->about,


Loading…
Cancel
Save