Skip to content

Commit

Permalink
Quick fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danpros committed Jan 11, 2016
1 parent 8af0ef1 commit e66f84d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cache/installedVersion.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"id": 782014,
"tag_name": "v2.7.2"
"tag_name": "v2.7.3"
}
14 changes: 7 additions & 7 deletions system/htmly.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
'bodyclass' => 'in-front',
'breadcrumb' => '',
'p' => $front,
'type' => 'is_front',
'type' => 'is_frontpage',
'is_front' => true,
), $layout);

Expand Down Expand Up @@ -96,7 +96,7 @@
'description' => blog_description(),
'canonical' => site_url(),
'bodyclass' => 'no-posts',
'type' => 'is_front',
'type' => 'is_frontpage',
'is_front' => true,
), $layout);

Expand All @@ -112,7 +112,7 @@
'bodyclass' => 'in-front',
'breadcrumb' => '',
'pagination' => has_pagination($total, $perpage, $page),
'type' => 'is_front',
'type' => 'is_frontpage',
'is_front' => true,
), $layout);

Expand Down Expand Up @@ -271,7 +271,7 @@
'title' => 'Edit profile - ' . blog_title(),
'description' => blog_description(),
'canonical' => site_url(),
'type' => 'is_admin',
'type' => 'is_profile',
'is_admin' => true,
'bodyclass' => 'edit-profile',
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; Edit profile',
Expand Down Expand Up @@ -312,7 +312,7 @@
'error' => '<ul>' . $message['error'] . '</ul>',
'postTitle' => $title,
'postContent' => $content,
'type' => 'is_admin',
'type' => 'is_profile',
'is_admin' => true,
'bodyclass' => 'edit-profile',
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; Edit profile'
Expand All @@ -330,7 +330,7 @@
'title' => 'Edit frontpage - ' . blog_title(),
'description' => blog_description(),
'canonical' => site_url(),
'type' => 'is_admin',
'type' => 'is_frontpage',
'is_admin' => true,
'bodyclass' => 'edit-frontpage',
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; Edit frontpage',
Expand Down Expand Up @@ -371,7 +371,7 @@
'error' => '<ul>' . $message['error'] . '</ul>',
'postTitle' => $title,
'postContent' => $content,
'type' => 'is_admin',
'type' => 'is_frontpage',
'is_admin' => true,
'bodyclass' => 'edit-frontpage',
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; Edit frontpage'
Expand Down

0 comments on commit e66f84d

Please sign in to comment.