diff --git a/module/product/model.php b/module/product/model.php index c13733fe8b..cfa2bcd942 100755 --- a/module/product/model.php +++ b/module/product/model.php @@ -21,6 +21,7 @@ class productModel extends model */ public function checkPriv(int $productID): bool { + if(common::isTutorialMode()) return true; return !empty($productID) && ($this->app->user->admin || (strpos(",{$this->app->user->view->products},", ",{$productID},") !== false)); }