Browse Source

Missing sanitization filter for 1 parameter: fixed !

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1551 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 13 years ago
parent
commit
b92be77027
1 changed files with 1 additions and 1 deletions
  1. 1 1
      synchro/synchro_import.php

+ 1 - 1
synchro/synchro_import.php

@@ -290,7 +290,7 @@ try
 	//
 	// Read parameters
 	//
-	$iDataSourceId = ReadMandatoryParam($oP, 'data_source_id');
+	$iDataSourceId = ReadMandatoryParam($oP, 'data_source_id', 'raw_data');
 	$sSynchronize = ReadParam($oP, 'synchronize');
 	$sSep = ReadParam($oP, 'separator', 'raw_data');
 	$sQualifier = ReadParam($oP, 'qualifier', 'raw_data');