From 7cc75bf80a22d463913305cc7ab6ddcd743b0ff7 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Mon, 16 May 2022 13:43:36 +0800 Subject: [PATCH] * Fix bug #22250. --- module/action/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/action/model.php b/module/action/model.php index 2791f3ee01..56a2b37b33 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -789,7 +789,7 @@ class actionModel extends model if(is_array($desc)) { if($key == 'extra') continue; - if($action->objectType == 'story' and $action->action = 'reviewed' and strpos($action->extra, '|') !== false and $key == 'actor') + if($action->objectType == 'story' and $action->action == 'reviewed' and strpos($action->extra, '|') !== false and $key == 'actor') { $desc['main'] = str_replace('$actor', $this->lang->action->superReviewer . ' ' . $value, $desc['main']); }