Skip to content

Commit

Permalink
fix page set timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
davydovct committed Jun 9, 2018
1 parent bcb8847 commit af22736
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cleantalkMod.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function cleantalk_sfw_check()
'js_timezone' => isset($_COOKIE['ct_timezone']) ? $_COOKIE['ct_timezone'] : null,
'mouse_cursor_positions' => isset($_COOKIE['ct_pointer_data']) ? $_COOKIE['ct_pointer_data'] : null,
'key_press_timestamp' => !empty($_COOKIE['ct_fkp_timestamp']) ? $_COOKIE['ct_fkp_timestamp'] : null,
'page_set_timestamp' => !empty($_COOKIE['ct_ps_timestamp']) ? $_COOKIE['ct_ps_timestamp'] : null,
'page_set_timestamp' => !empty($_COOKIE['apbct_timestamp']) ? $_COOKIE['apbct_timestamp'] : null,
'REFFERRER_PREVIOUS' => isset($_COOKIE['apbct_prev_referer'])? $_COOKIE['apbct_prev_referer']: null,
'cookies_enabled' => apbct_cookies_test(),
)
Expand Down Expand Up @@ -443,7 +443,7 @@ function cleantalk_check_register(&$regOptions, $theme_vars){
'js_timezone' => !empty($_COOKIE['ct_timezone']) ? $_COOKIE['ct_timezone'] : null,
'mouse_cursor_positions' => !empty($_COOKIE['ct_pointer_data']) ? $_COOKIE['ct_pointer_data'] : null,
'key_press_timestamp' => !empty($_COOKIE['ct_fkp_timestamp']) ? $_COOKIE['ct_fkp_timestamp'] : null,
'page_set_timestamp' => !empty($_COOKIE['ct_ps_timestamp']) ? $_COOKIE['ct_ps_timestamp'] : null,
'page_set_timestamp' => !empty($_COOKIE['apbct_timestamp']) ? $_COOKIE['apbct_timestamp'] : null,
'REFFERRER_PREVIOUS' => isset($_COOKIE['apbct_prev_referer'])? $_COOKIE['apbct_prev_referer']: null,
'cookies_enabled' => apbct_cookies_test(),
)
Expand Down Expand Up @@ -546,7 +546,7 @@ function cleantalk_check_message(&$msgOptions, $topicOptions, $posterOptions){
'js_timezone' => isset($_COOKIE['ct_timezone']) ? $_COOKIE['ct_timezone'] : null,
'mouse_cursor_positions' => isset($_COOKIE['ct_pointer_data']) ? $_COOKIE['ct_pointer_data'] : null,
'key_press_timestamp' => !empty($_COOKIE['ct_fkp_timestamp']) ? $_COOKIE['ct_fkp_timestamp'] : null,
'page_set_timestamp' => !empty($_COOKIE['ct_ps_timestamp']) ? $_COOKIE['ct_ps_timestamp'] : null,
'page_set_timestamp' => !empty($_COOKIE['apbct_timestamp']) ? $_COOKIE['apbct_timestamp'] : null,
'REFFERRER_PREVIOUS' => isset($_COOKIE['apbct_prev_referer'])? $_COOKIE['apbct_prev_referer']: null,
'cookies_enabled' => apbct_cookies_test(),
)
Expand Down

0 comments on commit af22736

Please sign in to comment.