Skip to content

Commit 5b7467a

Browse files
author
Joan He
committed
MAGETWO-66318: Remove usages of serialize/unserialize in CmsSampleData
- fix static test failurs
1 parent 093036f commit 5b7467a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Cms/Setup/ContentConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function convert($value)
5555
$convertedValue .= $this->convertMatchString($match);
5656
}
5757
preg_match_all('/(.*?{{widget.*?}})*(?<ending>.*?)$/si', $value, $matchesTwo, PREG_SET_ORDER);
58-
if(isset($matchesTwo[0])) {
58+
if (isset($matchesTwo[0])) {
5959
$convertedValue .= $matchesTwo[0]['ending'];
6060
}
6161

0 commit comments

Comments
 (0)