diff --git a/system/admin/views/update.html.php b/system/admin/views/update.html.php index 8365368..ab9d0ee 100644 --- a/system/admin/views/update.html.php +++ b/system/admin/views/update.html.php @@ -12,7 +12,7 @@ $updater = new HubUpdater(array( if ($updater->able()) { $info = $updater->getNewestInfo(); echo '
Update to ' . $info['tag_name'] . '
'; + echo 'Update to ' . $info['tag_name'] . '
'; } else { echo 'You are using the latest HTMLy version.
'; diff --git a/system/htmly.php b/system/htmly.php index 096e88c..57893c8 100644 --- a/system/htmly.php +++ b/system/htmly.php @@ -1321,6 +1321,8 @@ get('/admin/update/now/:csrf', function ($CSRF) { render('updated-to', array( 'head_contents' => head_contents('Updated - ' . blog_title(), blog_description(), site_url()), 'info' => $updater->getCurrentInfo(), + 'bodyclass' => 'updatepage', + 'breadcrumb' => '' . config('breadcrumb.home') . ' » Update HTMLy' )); } else { $login = site_url() . 'login'; diff --git a/system/upgrade/index.php b/system/upgrade/index.php index 67b1ed6..ca8f9b4 100644 --- a/system/upgrade/index.php +++ b/system/upgrade/index.php @@ -1,5 +1,4 @@