From a4ffa4bbabd2a3e798a4f96f8be54b85c900ee47 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 4 Jan 2024 09:45:01 +0800 Subject: [PATCH] * Delete excess #. --- module/story/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/control.php b/module/story/control.php index c30ac1ceb7..a94895d156 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -477,7 +477,7 @@ class story extends control $story = $this->story->getById($storyID, $version, true); $product = $this->product->getByID((int)$story->product); - if($tab == 'product' and !empty($product->shadow)) return $this->send(array('result' => 'success', 'load' => "{$uri}##app=project")); + if($tab == 'product' and !empty($product->shadow)) return $this->send(array('result' => 'success', 'load' => "{$uri}#app=project")); if(!$story) return $this->send(array('result' => 'success', 'message' => $this->lang->notFound, 'load' => $this->createLink($this->config->vision == 'lite' ? 'project' : 'product', 'all'))); if(!$this->app->user->admin and strpos(",{$this->app->user->view->products},", ",$story->product,") === false) return $this->send(array('result' => 'success', 'message' => $this->lang->product->accessDenied, 'load' => array('back' => true)));