Skip to content

Commit

Permalink
Update class-wp-session.php
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscct7 committed Jul 19, 2013
1 parent b978e5c commit 96ba80a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/libraries/class-wp-session.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected function set_expiration() {
* Set the session cookie
*/
protected function set_cookie() {
setcookie( WP_SESSION_COOKIE, $this->session_id . '||' . $this->expires . '||' . $this->exp_variant , $this->expires, COOKIEPATH, COOKIE_DOMAIN );
setcookie( WP_SESSION_COOKIE, $this->session_id, $this->expires, $this->exp_variant , $this->expires, COOKIEPATH, COOKIE_DOMAIN );
}

/**
Expand Down Expand Up @@ -305,4 +305,4 @@ public function valid() {
public function count() {
return count( $this->container );
}
}
}

0 comments on commit 96ba80a

Please sign in to comment.