appendices/migration72/incompatible.xml
6d29533483657c036e49edb5ea88c7103d126681
...
...
@@ -135,7 +135,7 @@ var_dump(
135
135
count(null), // NULL is not countable
136
136
count(1), // integers are not countable
137
137
count('abc'), // strings are not countable
138
-
count(new stdclass), // objects not implementing the Countable interface are not countable
138
+
count(new stdClass), // objects not implementing the Countable interface are not countable
139
139
count([1,2]) // arrays are countable
140
140
);
141
141
]]>
...
...
@@ -340,6 +340,16 @@ int(2)
340
340
is now <literal>7200</literal>.
341
341
</para>
342
342
</sect2>
343
+

344
+
<sect2 xml:id="migration72.incompatible.cookie-decode">
345
+
<title>Incoming Cookies</title>
346
+

347
+
<para>
348
+
As of PHP 7.2.34, the <emphasis>names</emphasis> of incoming cookies are no
349
+
longer url-decoded for security reasons.
350
+
</para>
351
+
</sect2>
352
+

343
353
</sect1>
344
354

345
355
<!-- Keep this comment at the end of the file
346
356