Skip to content
Snippets Groups Projects
Commit fbf590cd authored by Sami Kiminki's avatar Sami Kiminki
Browse files

Fix scheduler/timecheck, issue #221330

parent 49f43a44
No related branches found
Tags 8.x-2.0-alpha5
No related merge requests found
......@@ -313,13 +313,9 @@ function theme_scheduler_timecheck($now) {
drupal_set_title(t('Scheduler OS time check'));
$t = localtime($now, TRUE);
$lt = ($t['tm_year']+1900) .'-'. ($t['tm_mon']+1) .'-'. $t['tm_mday'] .' '. $t['tm_hour'] .':'. $t['tm_min'] .':'. $t['tm_sec'];
$t_options = array(
'%time' => date("Y-m-d H:i:s", $now),
'%lt' => $lt,
'%time' => gmdate("Y-m-d H:i:s", $now),
'%lt' => date("Y-m-d H:i:s P", $now),
);
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment