Проблема в модуле storm timetreking чтото с форматами даты.

Главные вкладки

Аватар пользователя Stasroot1@drupal.org Stasroot1@drupal.org 5 января 2010 в 11:25

вот ошибка, которая выводиться мне: warning: mktime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Moscow' for 'MSK/3.0/no DST' instead in /home/srv/www/vhosts/testdrupal/sites/all/modules/storm/stormtimetracking/stormtimetracking.admin.inc on line 215.

вот запись по этой ошибке в системном журнале из БД Друпала:

Тип  php
Дата        Вторник, 5 Январь, 2010 - 10:01
Пользователь        root
Месторасположение      http://testdrupal/storm/timetrackings/
Источник отсылки http://testdrupal/storm
Сообщение      mktime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Moscow' for 'MSK/3.0/no DST' instead в файле /home/srv/www/vhosts/testdrupal/sites/all/modules/storm/stormtimetracking/stormtimetracking.admin.inc в строке 215.
Важность        ошибка
Имя хоста       127.0.0.5
Действия       

Вот содержание того блока кода где находиться 215 строчка:

<?phpif (!$dateto) {
    $year = format_date(time(), 'custom', 'Y');
    $month = format_date(time(), 'custom', 'n');
 215строка:    $day = format_date(mktime(0, 0, 0, ($month + 1), 0, $year), 'custom', 'd');
    $dateto = array('day' => $day,
                     'month' => $month,
                     'year' => $year,
                     'hour' => 23,
                     'minute' => 59,
    );
    $_SESSION['stormtimetracking_list_filter']['dateto'] = $dateto;
  }?>

Подскажите что делать с этим? както отредактировать эту 215 строку?

Комментарии