-
Improvement
-
Resolution: Fixed
-
Major
-
1.9.12, 2.0
-
MOODLE_19_STABLE, MOODLE_20_STABLE
-
MOODLE_23_STABLE
-
wip-mdl-27562
-
/lib/form/dateselector.php doesn't pass configurable option 'timezone' to function usergetdate() as 2nd parameter.
In function: onQuickFormEvent($event, $arg, &$caller)
|
Change:
|
|
if (!is_array($value)) {
|
$currentdate = usergetdate($value);
|
$value = array(
|
|
To:
|
|
if (!is_array($value)) {
|
$currentdate = usergetdate($value, $this->_options['timezone']);
|
$value = array(
|
- has been marked as being related by
-
MDL-32234 invalid index error while browsing users with filter
-
- Closed
-