Merge branch 'MDL-78142-master' of https://github.com/meirzamoodle/moodle

This commit is contained in:
Andrew Nicols 2023-06-01 09:51:22 +08:00
commit 64dbf7c1f2
No known key found for this signature in database
GPG Key ID: 6D1E3157C8CFBF14
2 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,12 @@ class iCalendar_property {
var $val_multi = false;
var $val_default = NULL;
/** @var int|null RFC2445_TYPE value. */
protected $val_type;
/** @var string property name. */
protected $name;
function __construct() {
$this->parameters = array();
}

View File

@ -30,3 +30,4 @@ Changelog
11/ MDL-67029: replace curly by square brackets for string offsets. PHP 7.4 compatibility (25 Oct 2019)
12/ MDL-74866: fixed parameter parsing if the value is wrapped by DQUOTE character (28 Jul 2022)
13/ MDL-76333: replaced strftime() with date() for PHP 8.1 compatibility (16 Nov 2022)
14/ MDL-78142: fixed PHP 8.2: Dynamic Properties deprecations (9 May 2023)