* Delete unused code.

This commit is contained in:
xieqiyu
2022-08-22 17:41:29 +08:00
parent 99e4534f38
commit 64b9c8d35e
3 changed files with 0 additions and 7 deletions
-1
View File
@@ -261,4 +261,3 @@ UPDATE `zt_grouppriv` SET `module` = 'product' WHERE `module` = 'story' and `met
ALTER TABLE `zt_job` ADD `lastSyncDate` datetime DEFAULT NULL AFTER `lastTag`;
INSERT INTO `zt_cron` (`m`, `h`, `dom`, `mon`, `dow`, `command`, `remark`, `type`, `buildin`, `status`, `lastTime`) VALUES ('*/5', '*', '*', '*', '*', 'moduleName=compile&methodName=syncCompile', '定时同步构建记录', 'zentao', 1, 'normal', '0000-00-00 00:00:00');
>>>>>>> master
-1
View File
@@ -709,7 +709,6 @@ class storyModel extends model
->remove('files,labels,reviewer,comment,needNotReview,uid')
->get();
$story = $this->loadModel('file')->processImgURL($story, $this->config->story->editor->change['id'], $this->post->uid);
$this->dao->update(TABLE_STORY)->data($story, 'spec,verify')
->autoCheck()
-5
View File
@@ -1,5 +0,0 @@
<?php
$a = array('1', '2', '3');
$b = array('1', '3');
echo var_dump(array_diff($b, $a));