From 482624fc4485bf3556c9b99a56b6ff8090147636 Mon Sep 17 00:00:00 2001 From: Rasmus Fuhse <fuhse@data-quest.de> Date: Tue, 20 Jun 2017 12:50:12 +0200 Subject: [PATCH] fixes #75 --- classes/MarketPlugin.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/MarketPlugin.class.php b/classes/MarketPlugin.class.php index 2315c07..f3e9635 100755 --- a/classes/MarketPlugin.class.php +++ b/classes/MarketPlugin.class.php @@ -44,7 +44,7 @@ class MarketPlugin extends SimpleORMap { } public function requestReview() { - if ($this->content['publiclyvisible'] && !$this->content_db['publiclyvisible'] && !$this['approved']) { + if ($this['publiclyvisible'] && ($this->isNew() || $this->isFieldDirty("publiclyvisible")) && !$this['approved']) { $messaging = new messaging(); $statement = DBManager::get()->prepare(" SELECT roles_user.userid -- GitLab