From 44ee8ad38c8fce6aeeb27e5a5846eed3b7a4b225 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Fri, 7 Jul 2023 17:03:06 +0800 Subject: [PATCH] * Show the title of the story change icon. --- module/story/tao.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/tao.php b/module/story/tao.php index 217b92cfaa..e8dc2c57cc 100644 --- a/module/story/tao.php +++ b/module/story/tao.php @@ -1477,7 +1477,7 @@ class storyTao extends storyModel /* Change button. */ $canChange = common::hasPriv('story', 'change') && $this->isClickable($story, 'change'); - $title = $canChange ? '' : $this->lang->story->changeTip; + $title = $canChange ? $lang->story->change : $this->lang->story->changeTip; $actions[] = array('name' => 'change', 'url' => $canChange ? $changeLink : null, 'hint' => $title, 'disabled' => !$canChange); /* Submitreview, review, recall buttons. */