moodle/tag
Eloy Lafuente (stronk7) 6783adc239 MDL-67035 tags: fix nested ternary operators to be php74 compliant
Nesting ternary operators without explicit parentheses is deprecated:

    // Code like
    $a ? $b : $c ? $d : $e
    // should be replaced by (current interpretation)
    ($a ? $b : $c) ? $d : $e
    // or (likely intended interpretation)
    $a ? $b : ($c ? $d : $e)
2019-11-16 20:03:47 +01:00
..
classes MDL-67035 tags: fix nested ternary operators to be php74 compliant 2019-11-16 20:03:47 +01:00
templates MDL-66553 tags: option to accesshide label when displaying a taglist 2019-10-09 13:26:12 +01:00
tests MDL-64656 core_tag: New WebService core_tag_get_tag_cloud 2019-04-11 10:20:44 +02:00
edit.php MDL-51283 core_tag: change tagtype to isstandard 2016-02-02 17:31:14 +08:00
edit_form.php MDL-51283 core_tag: change tagtype to isstandard 2016-02-02 17:31:14 +08:00
index.php MDL-50851 core_tag: introduce tag collections 2016-01-10 15:25:43 +08:00
lib.php MDL-53772 inplace_editable: set context in callbacks 2016-04-14 13:58:29 +08:00
locallib.php MDL-50851 core_tag: introduce tag collections 2016-01-10 15:25:43 +08:00
manage.php MDL-62746 tag: Convert YUI modals to AMD modals 2018-07-06 12:34:23 +08:00
search.php MDL-50851 core_tag: introduce tag collections 2016-01-10 15:25:43 +08:00
upgrade.txt MDL-51883 libraries: 3.1 final deprecation in lib/deprecatedlib.php 2018-08-01 10:32:37 +08:00
user.php MDL-50851 user: use new tag API for interests 2016-01-10 15:25:47 +08:00