We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa3fbb commit adf9c42Copy full SHA for adf9c42
includes/utils/class-ql-session-handler.php
@@ -354,10 +354,11 @@ public function set_session_expiration() {
354
// 14 Days.
355
$this->_session_expiration = apply_filters(
356
'graphql_woocommerce_cart_session_expire',
357
- time() + ( 60 * 60 * 24 * 14 ) // Seconds * Minutes * Hours * Days
+ // Seconds * Minutes * Hours * Days.
358
+ time() + ( 60 * 60 * 24 * 14 )
359
);
360
// 13 Days.
- $this->_session_expiring = $this->_session_expiration - ( 60 * 60 * 24 ); // Seconds * Minutes * Hours
361
+ $this->_session_expiring = $this->_session_expiration - ( 60 * 60 * 24 );
362
}
363
364
/**
0 commit comments