Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.2.1
-
Fix Version/s: 1.2.2
-
Component/s: Import/Export
-
Labels:None
Description
Dears,
First, I would like to thank you for your great work.
Second, the bug:
Line ~279 in the function listTableRelations, there is a mistake in the use of strpos : strpos(',', $values[1]) and strpos(',', $values[3]), it should be strpos($values[1], ',') and strpos($values[2], ',') ![]()
With this code, strpos always returns false and so, the composite foreign keys are not skipped as desired.
Continue your great job
Regards,
Raphaël Dehousse
The fix you did does not fix the problem
The problem is the order of the parameter in strpos
I will create a patch this avond and attach it here