Skip to content

Commit

Permalink
Fix bad property
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 7, 2015
1 parent 4c5fa75 commit ba5d355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/lib/project.lib.php
Expand Up @@ -498,7 +498,7 @@ function projectLinesb(&$inc, $parent, $lines, &$level, &$projectsrole, &$tasksr
// Ref
print '<td>';
$taskstatic->id=$lines[$i]->id;
$taskstatic->ref=$lines[$i]->id;
$taskstatic->ref=($lines[$i]->ref?$lines[$i]->ref:$lines[$i]->id);
print $taskstatic->getNomUrl(1);
print '</td>';

Expand Down

0 comments on commit ba5d355

Please sign in to comment.