This commit is contained in:
zhouxudong
2022-01-17 13:12:02 +08:00
parent a73e08d4cb
commit ac318de175
+1 -2
View File
@@ -1033,14 +1033,13 @@ class actionModel extends model
{
$action->objectName .= $this->lang->action->label->startProgram;
}
elseif($action->objectType == 'branch' and $action->action == 'mergedbranch')
{
if($action->objectID == 0) $action->objectName = $this->lang->branch->main;
$action->objectName = '"' . $action->extra . ' "' . $this->lang->action->to . ' "' . $action->objectName . '"';
}
elseif($action->objectType == 'user')
({
{
$user = $this->dao->select('id,realname')->from(TABLE_USER)->where('id')->eq($action->objectID)->fetch();
if($user) $action->objectName = $user->realname;
}