From 8710a132ea64693900efce1c2881babf90658709 Mon Sep 17 00:00:00 2001 From: excelwebzone Date: Fri, 25 Nov 2011 00:46:40 -0800 Subject: [PATCH] Added example to the change log file --- CHANGELOG-2.1.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-2.1.md b/CHANGELOG-2.1.md index 77823eaf9e..158cb36e6f 100644 --- a/CHANGELOG-2.1.md +++ b/CHANGELOG-2.1.md @@ -161,7 +161,30 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c ### Serializer - * [BC BREAK] replaced the `item` XML tag with `*item` + * [BC BREAK] convert the `item` XML tag to an array + + + + <![CDATA[title1]]><![CDATA[title2]]> + + + Before: + + Array() + + After: + + Array( + [item] => Array( + [0] => Array( + [title] => title1 + ) + [1] => Array( + [title] => title2 + ) + ) + ) + ### Translation