You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: user_guide_src/source/changelogs/v4.3.0.rst
+16-6Lines changed: 16 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -227,22 +227,32 @@ Libraries
227
227
- **Publisher:** Added methods ``replace()``, ``addLineAfter()`` and ``addLineBefore()`` to modify files in Publisher. See :ref:`Publisher <publisher-modifying-files>` for details.
228
228
- **Encryption:** Now Encryption can decrypt data encrypted with CI3's Encryption. See :ref:`encryption-compatible-with-ci3`.
229
229
- **CURLRequest:** Added option version HTTP2 in :ref:`CURLRequest <curlrequest-version>`.
230
-
- **Typography:** Creation of ``br`` tag can be configured to exclude or not the solidus character (``/``)
231
-
before the right angle bracket (``>``) by setting the ``$html5`` property in
232
-
**app/Config/DocTypes.php** to ``true``.
233
-
- **View:** The ``nl2br`` filter in ``Parser`` outputs ``<br>`` tag by setting the ``$html5`` property in
234
-
**app/Config/DocTypes.php** to ``true``.
235
230
236
231
Helpers and Functions
237
232
=====================
238
233
239
-
- Creation of void HTML elements like ``<input>`` via ``form_helper``, ``html_helper`` or common functions can be configured to exclude or not the solidus character (``/``) before the right angle bracket (``>``) by setting the ``$html5`` property in **app/Config/DocTypes.php** to ``true``.
240
234
- Now you can autoload helpers by **app/Config/Autoload.php**.
241
235
- Added new Form helper function :php:func:`validation_errors()`, :php:func:`validation_list_errors()` and :php:func:`validation_show_error()` to display Validation Errors.
242
236
- You can set the locale to :php:func:`route_to()` if you pass a locale value as the last parameter.
243
237
- Added :php:func:`request()` and :php:func:`response()` functions.
244
238
- Added :php:func:`decamelize()` function to convert camelCase to snake_case.
245
239
240
+
HTML5 Compatibility
241
+
===================
242
+
243
+
Creation of void HTML elements like ``<input>`` can be configured to exclude or not the solidus character
244
+
(``/``) before the right angle bracket (``>``) by setting the ``$html5`` property in
245
+
**app/Config/DocTypes.php**. If you set it to ``true``, HTML5 compatible tags without ``/`` like ``<br>``
0 commit comments