From 14f967733faf62d0a85a72ebcf50896659d186d6 Mon Sep 17 00:00:00 2001 From: zhouxin Date: Thu, 22 Dec 2022 06:31:58 +0000 Subject: [PATCH] * Fix bug for feedback 1807. --- module/doc/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/doc/control.php b/module/doc/control.php index 2f832eac3d..9316978bdd 100755 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -326,7 +326,7 @@ class doc extends control if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $docID)); $objectID = zget($lib, $lib->type, 0); $params = "type={$lib->type}&objectID=$objectID&libID={$lib->id}&docID=" . $docResult['id']; - $link = isonlybody() ? 'parent' : $this->createLink('doc', 'objectLibs', $params) . '#app=' . $this->app->tab; + $link = isonlybody() ? 'parent' : $this->createLink('doc', 'objectLibs', $params); $response = array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $link); return $this->send($response);