Skip to content
Snippets Groups Projects
Commit d71a8f47 authored by Ahmed Samir's avatar Ahmed Samir Committed by baldwinlouie
Browse files

Issue #1867766 by Ahmed_Samir: Fixing strict warning when using gmtime().

parent e98019cd
No related branches found
No related tags found
No related merge requests found
...@@ -316,7 +316,7 @@ function cloud_get_runtime($launch_time) { ...@@ -316,7 +316,7 @@ function cloud_get_runtime($launch_time) {
$launch_tmp_time = date_parse($launch_time); $launch_tmp_time = date_parse($launch_time);
$gm_launch_time = gmmktime( $launch_tmp_time['hour'], $launch_tmp_time['minute'], $launch_tmp_time['second'], $launch_tmp_time['month'], $launch_tmp_time['day'], $launch_tmp_time['year'] ); $gm_launch_time = gmmktime( $launch_tmp_time['hour'], $launch_tmp_time['minute'], $launch_tmp_time['second'], $launch_tmp_time['month'], $launch_tmp_time['day'], $launch_tmp_time['year'] );
$curr_time = gmmktime(); $curr_time = time();
$diff = $curr_time - $gm_launch_time; $diff = $curr_time - $gm_launch_time;
......
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