Skip to content

Commit 6bfdef7

Browse files
XOL-2533 Using the value of the parameter passed in for x_duplicate_window
1 parent 87a39f0 commit 6bfdef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Message/AIMAbstractRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function addExtraOptions(\SimpleXMLElement $data)
6969
$extraOptions = $data->addChild('extraOptions');
7070
$node = dom_import_simplexml($extraOptions);
7171
$nodeOwner = $node->ownerDocument;
72-
$node->appendChild($nodeOwner->createCDATASection("x_duplicate_window=0"));
72+
$node->appendChild($nodeOwner->createCDATASection(sprintf("x_duplicate_window=%s", $this->getDuplicateWindow())));
7373
}
7474
return $data;
7575
}

0 commit comments

Comments
 (0)