* Fix bug#3674.

This commit is contained in:
qiyu-xie
2020-12-04 13:52:17 +08:00
parent 5d394844d6
commit 16b9563c2f
+1 -1
View File
@@ -1450,7 +1450,7 @@ class treeModel extends model
if(isset($module->root) and $module->root != $self->root)
{
$this->dao->update(TABLE_MODULE)->set('root')->eq($module->root)->where('id')->in($childs)->exec();
$this->dao->update(TABLE_MODULE)->set('branch')->eq(0)->where('id')->in($childs)->exec();
$this->dao->update(TABLE_MODULE)->set('branch')->eq($module->branch)->where('id')->in($childs)->exec();
if($self->type == 'doc') $this->dao->update(TABLE_DOC)->set('`lib`')->eq($module->root)->where('module')->eq($moduleID)->exec();
}
$this->fixModulePath(isset($module->root) ? $module->root : $self->root, $self->type);