Merge pull request #16 from hsb/master

Fixes for the project page
This commit is contained in:
Evan Priestley
2011-06-11 12:41:32 -07:00

View File

@@ -34,7 +34,7 @@ class PhabricatorProjectListController
'class' => 'small grey button', 'class' => 'small grey button',
'href' => '/project/view/'.$project->getID().'/', 'href' => '/project/view/'.$project->getID().'/',
), ),
'View Project Project Profile'), 'View Project Profile'),
); );
} }
@@ -52,13 +52,13 @@ class PhabricatorProjectListController
$panel = new AphrontPanelView(); $panel = new AphrontPanelView();
$panel->appendChild($table); $panel->appendChild($table);
$panel->setHeader('People'); $panel->setHeader('Project');
$panel->setCreateButton('Create New Project Project', '/project/edit/'); $panel->setCreateButton('Create New Project', '/project/edit/');
return $this->buildStandardPageResponse( return $this->buildStandardPageResponse(
$panel, $panel,
array( array(
'title' => 'Project Projects', 'title' => 'Projects',
)); ));
} }