diff --git a/system/htmly.php b/system/htmly.php index df7cc7e..d207797 100644 --- a/system/htmly.php +++ b/system/htmly.php @@ -59,13 +59,13 @@ get('/tag/:tag',function($tag){ } render('main',array( - 'title' => 'Tag - ' . ucfirst($tag) .' - ' . config('blog.title'), + 'title' => 'Tag - ' . $tag .' - ' . config('blog.title'), 'page' => $page, 'posts' => $posts, 'canonical' => config('site.url') . '/tag/' . $tag, - 'description' => 'All posts tagged ' . ucfirst($tag) . ' on '. config('blog.title') . '.', + 'description' => 'All posts tagged ' . $tag . ' on '. config('blog.title') . '.', 'bodyclass' => 'intag', - 'breadcrumb' => 'Home » Posts tagged ' . ucfirst($tag), + 'breadcrumb' => 'Home » Posts tagged ' . $tag, 'pagination' => has_pagination($total, $perpage, $page) )); }); @@ -150,7 +150,7 @@ get('/:year/:month/:name', function($year, $month, $name){ 'canonical' => $current->url, 'description' => $description = get_description($current->body), 'bodyclass' => 'inpost', - 'breadcrumb' => 'Home » ' . ucfirst($current->tag) . ' » ' . $current->title, + 'breadcrumb' => 'Home » ' . $current->tag . ' » ' . $current->title, 'prev' => has_prev($prev), 'next' => has_next($next), 'type' => 'blogpost', diff --git a/system/includes/functions.php b/system/includes/functions.php index 321b226..9378af5 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -750,7 +750,7 @@ function social(){ } if (!empty($google)) { - echo ''; + echo 'Google+'; } if (!empty($tumblr)) {