Removing PID field in projects to use only the project name

This commit is contained in:
Manuel Cillero 2017-08-11 12:18:11 +02:00
parent 58d5a92811
commit 7eaffe9bbb
2 changed files with 10 additions and 39 deletions

View file

@ -27,7 +27,7 @@ function stormproject_list() {
'field' => 'spr.projectstatus',
),
array(
'data' => t('Title') . ' / ' . t('Organization') . ' » ' . t('Project manager'),
'data' => t('Name') . ' / ' . t('Organization') . ' » ' . t('Project manager'),
'field' => 'n.title',
),
array(
@ -426,4 +426,3 @@ function _stormproject_organization_projects_js($organization_nid=0) {
print drupal_to_js($projects);
exit();
}