From 5378faf74dd072ca56434e023bd34481c11519fa Mon Sep 17 00:00:00 2001 From: wangyidong Date: Tue, 7 Jul 2015 16:18:39 +0800 Subject: [PATCH] * fix a bug #640. --- module/my/view/story.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/my/view/story.html.php b/module/my/view/story.html.php index 0dc800dd85..336387f696 100644 --- a/module/my/view/story.html.php +++ b/module/my/view/story.html.php @@ -86,7 +86,7 @@ $actionLink = $this->createLink('story', 'batchEdit'); echo html::commonButton($lang->edit, "onclick=\"setFormAction('$actionLink')\""); } - if($canBatchClose) + if($canBatchClose and $type != 'closedBy') { $actionLink = $this->createLink('story', 'batchClose'); echo html::commonButton($lang->close, "onclick=\"setFormAction('$actionLink')\"");