Skip to content

Commit ec18842

Browse files
committed
Fix project page titles
1 parent aa57944 commit ec18842

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/Traq/Controllers/ProjectController.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class ProjectController extends AppController
4646
*/
4747
public function index()
4848
{
49+
$this->title(l('projects'));
50+
4951
if ($this->isJson) {
5052
$projects = [];
5153
foreach (Project::fetchAll() as $project) {
@@ -176,6 +178,8 @@ public function viewMilestone($milestone_slug)
176178
*/
177179
public function changelog()
178180
{
181+
$this->title(l('changelog'));
182+
179183
// Atom feed
180184
$this->feeds[] = array(Request::requestUri() . ".atom", l('x_changelog_feed', $this->project->name));
181185

0 commit comments

Comments
 (0)