From 42eac92737279639ecb41c6aa5d6d8426086d283 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 7 Jun 2016 08:53:41 +0100 Subject: [PATCH] Pass update order as null from the dashboard --- app/Http/Controllers/Dashboard/MetricController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/Dashboard/MetricController.php b/app/Http/Controllers/Dashboard/MetricController.php index ad50d14f..58ca8b37 100644 --- a/app/Http/Controllers/Dashboard/MetricController.php +++ b/app/Http/Controllers/Dashboard/MetricController.php @@ -153,7 +153,8 @@ class MetricController extends Controller Binput::get('display_chart', null, false), Binput::get('places', null, false), Binput::get('default_view', null, false), - Binput::get('threshold', null, false) + Binput::get('threshold', null, false), + null, )); } catch (ValidationException $e) { return Redirect::route('dashboard.metrics.edit', ['id' => $metric->id])