diff --git a/core/dashboard/index.php b/core/dashboard/index.php index 71755f06b1..095917e4cc 100644 --- a/core/dashboard/index.php +++ b/core/dashboard/index.php @@ -299,7 +299,11 @@ foreach($dashboard as $row) { $dashboard_name = strtolower($row['dashboard_name']); $dashboard_name = str_replace(" ", "_", $dashboard_name); - echo "
\n"; + $draggable = ''; + if ($_GET['edit'] == 'true') { + $draggable = "draggable='true'"; + } + echo "
\n"; include($row['dashboard_path']); echo "
\n"; $x++;