diff --git a/controllers/Orders.php b/controllers/Orders.php index e4f9a6bbe..718fdfffd 100644 --- a/controllers/Orders.php +++ b/controllers/Orders.php @@ -102,7 +102,7 @@ public function show() $order = Order::with('products', 'order_state')->findOrFail($this->params[0]); - $this->initRelation($order, 'payment_logs'); + $this->initRelation($order); $this->vars['order'] = $order; $this->vars['money'] = app(Money::class); diff --git a/updates/version.yaml b/updates/version.yaml index e4eb7441f..ab0097653 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -627,3 +627,5 @@ v3.5.12: - 'Various small additions (thanks to @RickAcb and @rubenvanerk)' v3.5.13: - 'Fixed RainLab.User v3 compatibility' +v3.5.14: + - 'Support for more flexible model extensions in the backend (thanks to @xyz1123581321)'