mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
Merge branch 'MDL-31193-master' of git://github.com/mouneyrac/moodle
This commit is contained in:
commit
35aba51758
@ -7958,7 +7958,7 @@ class admin_setting_managewebservicetokens extends admin_setting {
|
||||
|
||||
$validuntil = '';
|
||||
if (!empty($token->validuntil)) {
|
||||
$validuntil = date("F j, Y"); //TODO: language support (look for moodle function)
|
||||
$validuntil = userdate($token->validuntil, get_string('strftimedatetime', 'langconfig'));
|
||||
}
|
||||
|
||||
$iprestriction = '';
|
||||
|
@ -332,7 +332,7 @@ class core_webservice_renderer extends plugin_renderer_base {
|
||||
|
||||
$validuntil = '';
|
||||
if (!empty($token->validuntil)) {
|
||||
$validuntil = date("F j, Y"); //TODO MDL-31193 language support (look for moodle function)
|
||||
$validuntil = userdate($token->validuntil, get_string('strftimedatetime', 'langconfig'));
|
||||
}
|
||||
|
||||
$tokenname = $token->name;
|
||||
|
Loading…
x
Reference in New Issue
Block a user