Render the public key on the project edit page. CLose #722 done by @leewillis77

This commit is contained in:
Tobias van Beek 2015-02-16 15:00:37 +01:00
parent 9cc7a0477a
commit 24590265a5

View file

@ -268,7 +268,7 @@ class ProjectController extends PHPCI\Controller
$view->type = 'edit';
$view->project = $project;
$view->form = $form;
$view->key = null;
$view->key = $values['pubkey'];
return $view->render();
}