1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-15 05:00:06 +01:00

MDL-49828 timezones: fix typos introduced by MDL-49684

This commit is contained in:
Petr Skoda 2015-04-12 12:11:10 +12:00
parent d7551257a0
commit e49cb057a1
2 changed files with 3 additions and 3 deletions

@ -315,11 +315,11 @@ abstract class backup_cron_automated_helper {
/**
* Works out the next time the automated backup should be run.
*
* @param mixed $ignroedtimezone all settings are in server timezone!
* @param mixed $ignoredtimezone all settings are in server timezone!
* @param int $now timestamp, should not be in the past, most likely time()
* @return int timestamp of the next execution at server time
*/
public static function calculate_next_automated_backup($ignroedtimezone, $now) {
public static function calculate_next_automated_backup($ignoredtimezone, $now) {
$config = get_config('backup');

@ -75,7 +75,7 @@ function get_timezone_offset($tz) {
* @return array
*/
function get_list_of_timezones() {
debugging('update_timezone_records() is deprecated, use core_date::get_list_of_timezones() instead', DEBUG_DEVELOPER);
debugging('get_list_of_timezones() is deprecated, use core_date::get_list_of_timezones() instead', DEBUG_DEVELOPER);
return core_date::get_list_of_timezones();
}