Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scheduler-3313848
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
scheduler-3313848
Commits
fbf590cd
Commit
fbf590cd
authored
16 years ago
by
Sami Kiminki
Browse files
Options
Downloads
Patches
Plain Diff
Fix scheduler/timecheck, issue
#221330
parent
49f43a44
No related branches found
Branches containing commit
Tags
8.x-2.0-alpha5
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scheduler.module
+2
-6
2 additions, 6 deletions
scheduler.module
with
2 additions
and
6 deletions
scheduler.module
+
2
−
6
View file @
fbf590cd
...
...
@@ -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'
=>
gm
date
(
"Y-m-d H:i:s"
,
$now
),
'%lt'
=>
date
(
"Y-m-d H:i:s P"
,
$now
)
,
);
return
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment