Jelajahi Sumber

updated UPDATE file

Fabien Potencier 14 tahun lalu
induk
melakukan
855206fcb5
1 mengubah file dengan 6 tambahan dan 2 penghapusan
  1. 6 2
      UPDATE.md

+ 6 - 2
UPDATE.md

@@ -9,16 +9,20 @@ timeline closely anyway.
 PR11 to PR12
 ------------
 
-* AsseticBundle's XML `bundle` node has been normalized to match other similar
-  nodes
+* XML configurations have been normalized. All tags with only one attribute
+  have been converted to tag content:
 
   Before:
 
         <bundle name="MyBundle" />
+        <app:engine id="twig" />
+        <twig:extension id="twig.extension.debug" />
 
   After:
 
         <bundle>MyBundle</bundle>
+        <app:engine>twig</app:engine>
+        <twig:extension>twig.extension.debug</twig:extension>
 
 PR10 to PR11
 ------------