Merge branch '15.4'
This commit is contained in:
@@ -1271,7 +1271,7 @@ class docModel extends model
|
||||
$orderedExecutions = array();
|
||||
foreach($executions as $id => $execution)
|
||||
{
|
||||
$execution->name = zget($projectPairs, $execution->project) . ' / ' . $execution->name;
|
||||
$execution->name = $this->config->systemMode == 'new' ? zget($projectPairs, $execution->project) . ' / ' . $execution->name : $execution->name;
|
||||
|
||||
if($execution->status != 'done' and $execution->status != 'closed' and $execution->PM == $this->app->user->account)
|
||||
{
|
||||
@@ -2004,7 +2004,7 @@ class docModel extends model
|
||||
|
||||
if($this->app->tab == 'doc' and $type != 'custom' and $type != 'book')
|
||||
{
|
||||
$objectTitle = $type == 'execution' ? substr($objects[$objectID], strpos($objects[$objectID], '/') + 1) : $objects[$objectID];
|
||||
$objectTitle = ($this->config->systemMode == 'new' and $type == 'execution') ? substr($objects[$objectID], strpos($objects[$objectID], '/') + 1) : $objects[$objectID];
|
||||
|
||||
$output = <<<EOT
|
||||
<div class='btn-group angle-btn'>
|
||||
|
||||
Reference in New Issue
Block a user