N°2919 - Dashboard - Fix dashboard not saved

The sanitization was too strong. Some names can contain ':'
This commit is contained in:
Eric
2020-04-09 17:59:52 +02:00
parent 06b17e82db
commit b88b9dabdb

View File

@@ -1130,7 +1130,7 @@ EOF
break;
case 'dashboard_editor':
$sId = utils::ReadParam('id', '', false, 'element_identifier');
$sId = utils::ReadParam('id', '', false, 'context_param');
$aExtraParams = utils::ReadParam('extra_params', array(), false, 'raw_data');
$sDashboardFile = utils::ReadParam('file', '', false, 'raw_data');
$sReloadURL = utils::ReadParam('reload_url', '', false, 'raw_data');