Commit 118cf3a2b58774ebf2a0fd99857f73046699a01f
1 parent
1c02ab59
29.06.16
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
frontend/widgets/Seo.php
... | ... | @@ -156,9 +156,9 @@ class Seo extends Widget |
156 | 156 | return $this->getTitleString($array); |
157 | 157 | |
158 | 158 | } else if (!empty($title)) { |
159 | - return $title; | |
159 | + return ucfirst($title); | |
160 | 160 | } else { |
161 | - return $this->project_name; | |
161 | + return ucfirst($this->project_name); | |
162 | 162 | } |
163 | 163 | |
164 | 164 | break; | ... | ... |