* fix bug.

This commit is contained in:
wangyidong
2018-05-18 15:58:56 +08:00
parent 28fb042313
commit eec9dbd8f7
4 changed files with 10 additions and 4 deletions
+2
View File
@@ -15,8 +15,10 @@
<?php $browseLink = $app->session->bugList != false ? $app->session->bugList : inlink('browse', "productID=$bug->product");?>
<div id="mainMenu" class="clearfix">
<div class="btn-toolbar pull-left">
<?php if(!isonlybody()):?>
<?php echo html::a($browseLink, '<i class="icon icon-back icon-sm"></i> ' . $lang->goback, '', "class='btn btn-link'");?>
<div class="divider"></div>
<?php endif;?>
<div class="page-title">
<span class="label label-id"><?php echo $bug->id?></span>
<span class="text" style='color: <?php echo $bug->color; ?>'><?php echo $bug->title;?></span>
+2
View File
@@ -15,8 +15,10 @@
<?php $browseLink = $app->session->storyList != false ? $app->session->storyList : $this->createLink('product', 'browse', "productID=$story->product&branch=$story->branch&moduleID=$story->module");?>
<div id="mainMenu" class="clearfix">
<div class="btn-toolbar pull-left">
<?php if(!isonlybody()):?>
<?php echo html::a($browseLink, '<i class="icon icon-back icon-sm"></i> ' . $lang->goback, '', "class='btn btn-link'");?>
<div class="divider"></div>
<?php endif;?>
<div class="page-title">
<span class="label label-id"><?php echo $story->id?></span>
<span class="text" style='color: <?php echo $story->color;?>'><?php echo $story->title;?></span>
+2
View File
@@ -15,8 +15,10 @@
<?php $browseLink = $app->session->taskList != false ? $app->session->taskList : $this->createLink('project', 'browse', "projectID=$task->project");?>
<div id="mainMenu" class="clearfix">
<div class="btn-toolbar pull-left">
<?php if(!isonlybody()):?>
<?php echo html::a($browseLink, '<i class="icon icon-back icon-sm"></i> ' . $lang->goback, '', "class='btn btn-link'");?>
<div class="divider"></div>
<?php endif;?>
<div class="page-title">
<span class="label label-id"><?php echo $task->id?></span>
<span class="text" style='color: <?php echo $task->color; ?>'>
+4 -4
View File
@@ -2077,7 +2077,7 @@ class upgradeModel extends model
$groupPriv->group = $groupID;
$groupPriv->module = 'todo';
$groupPriv->method = 'createcycle';
$this->dao->replace(TABLE_GROUPPRIV)->data($data)->exec();
$this->dao->replace(TABLE_GROUPPRIV)->data($groupPriv)->exec();
}
$groups = $this->dao->select('*')->from(TABLE_GROUPPRIV)->where('module')->eq('mail')->orWhere('module')->eq('webhook')->fetchPairs('group', 'group');
@@ -2087,7 +2087,7 @@ class upgradeModel extends model
$groupPriv->group = $groupID;
$groupPriv->module = 'message';
$groupPriv->method = 'index';
$this->dao->replace(TABLE_GROUPPRIV)->data($data)->exec();
$this->dao->replace(TABLE_GROUPPRIV)->data($groupPriv)->exec();
}
$groups = $this->dao->select('*')->from(TABLE_GROUPPRIV)->where('module')->eq('project')->andWhere('method')->eq('linkStory')->fetchPairs('group', 'group');
@@ -2097,7 +2097,7 @@ class upgradeModel extends model
$groupPriv->group = $groupID;
$groupPriv->module = 'project';
$groupPriv->method = 'importPlanStories';
$this->dao->replace(TABLE_GROUPPRIV)->data($data)->exec();
$this->dao->replace(TABLE_GROUPPRIV)->data($groupPriv)->exec();
}
return true;
}
@@ -2298,7 +2298,7 @@ class upgradeModel extends model
$groupPriv->group = $groupID;
$groupPriv->module = 'my';
$groupPriv->method = 'calendar';
$this->dao->replace(TABLE_GROUPPRIV)->data($data)->exec();
$this->dao->replace(TABLE_GROUPPRIV)->data($groupPriv)->exec();
}
return true;
}