Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
WP Plugins
Cron-Control
Commits
958b207e
Commit
958b207e
authored
Jul 13, 2017
by
Erick Hitter
Browse files
Fix type as Golang is particular
parent
77d69596
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/class-events.php
View file @
958b207e
...
...
@@ -43,7 +43,7 @@ class Events extends Singleton {
}
// Check if execution is disabled, or if timestamp has passed
$disabled
=
get_option
(
self
::
DISABLE_RUN_OPTION
,
0
);
$disabled
=
(
int
)
get_option
(
self
::
DISABLE_RUN_OPTION
,
0
);
if
(
$disabled
<=
1
)
{
$this
->
run_disabled
=
$disabled
;
}
elseif
(
$disabled
>
time
()
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment