+ id;?> + name'>" . $kanban->name . '';?> +
++ +
diff --git a/db/update17.0.beta1.sql b/db/update17.0.beta1.sql index a604df6fa4..6ad66f1b12 100644 --- a/db/update17.0.beta1.sql +++ b/db/update17.0.beta1.sql @@ -1 +1,7 @@ ALTER TABLE `zt_task` ADD `fromIssue` mediumint(8) unsigned NOT NULL DEFAULT '0' AFTER `fromBug`; + +ALTER TABLE `zt_kanbanspace` ADD COLUMN `activatedBy` char(30) NOT NULL AFTER `closedDate`; +ALTER TABLE `zt_kanbanspace` ADD COLUMN `activatedDate` datetime NOT NULL AFTER `activatedBy`; + +ALTER TABLE `zt_kanban` ADD COLUMN `activatedBy` char(30) NOT NULL AFTER `closedDate`; +ALTER TABLE `zt_kanban` ADD COLUMN `activatedDate` datetime NOT NULL AFTER `activatedBy`; diff --git a/db/zentao.sql b/db/zentao.sql index 513d3dbaba..f0f9e8605d 100755 --- a/db/zentao.sql +++ b/db/zentao.sql @@ -760,6 +760,8 @@ CREATE TABLE `zt_kanbanspace` ( `lastEditedDate` datetime NOT NULL, `closedBy` char(30) NOT NULL, `closedDate` datetime NOT NULL, + `activatedBy` char(30) NOT NULL, + `activatedDate` datetime NOT NULL, `deleted` enum('0', '1') NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -786,6 +788,8 @@ CREATE TABLE `zt_kanban` ( `lastEditedDate` datetime NOT NULL, `closedBy` char(30) NOT NULL, `closedDate` datetime NOT NULL, + `activatedBy` char(30) NOT NULL, + `activatedDate` datetime NOT NULL, `deleted` enum('0', '1') NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/module/execution/css/create.css b/module/execution/css/create.css index d482356317..f3544e54ed 100644 --- a/module/execution/css/create.css +++ b/module/execution/css/create.css @@ -1,4 +1,5 @@ -#tipsModal {margin-top: 10%;} +[lang^='en'] #tipsModal {margin-top: 10%; max-width: 620px;} +[lang^='zh-cn'] #tipsModal {margin-top: 10%; max-width: 530px;} .chosen-container-single .chosen-single > span {max-width: 100%;} #copyProjectModal {padding: 0;} diff --git a/module/execution/view/create.html.php b/module/execution/view/create.html.php index 92bcc82447..8f162c33b6 100644 --- a/module/execution/view/create.html.php +++ b/module/execution/view/create.html.php @@ -15,7 +15,7 @@ createLink('execution', 'task', "execution=$executionID");?>
-execution->afterInfo;?>