* Modify the variable name.

This commit is contained in:
hufangzhou
2020-11-30 08:46:59 +08:00
parent 0c12ee5e94
commit a98557a3cc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -48,7 +48,7 @@
<td class='c-name text-left'><?php echo html::a($link, $execution->name);?></td>
<td class='text-left'><?php echo $execution->code;?></td>
<td class='text-left'><?php echo zget($lang->project->typeList, $execution->type);?></td>
<td class='c-name text-left'><?php echo html::a($this->createLink('project', 'browse', "id=$execution->project", '', '', $execution->project), $execution->parentName, '', "title='$execution->parentName'");?></td>
<td class='c-name text-left'><?php echo html::a($this->createLink('project', 'browse', "id=$execution->project", '', '', $execution->project), $execution->projectName, '', "title='$execution->projectName'");?></td>
<td><?php echo $execution->begin;?></td>
<td><?php echo $execution->end;?></td>
<td class="c-status">
+1 -1
View File
@@ -1001,7 +1001,7 @@ class userModel extends model
if($delay > 0) $project->delay = $delay;
}
if($project->project) $project->parentName = $projectList[$project->project]->name;
if($project->project) $project->projectName = $projectList[$project->project]->name;
$myProjects[$project->id] = $project;
}
}