From 59c26339c0dbf262116c9f1c562bc07034a9ed74 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 1 Oct 2007 12:17:39 +0000 Subject: Fixed a bug in the Session library where user agent matching would fail on user agents ending with a space. --- system/libraries/Session.php | 2 +- user_guide/changelog.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/system/libraries/Session.php b/system/libraries/Session.php index 819c3f5ef..9dd277073 100644 --- a/system/libraries/Session.php +++ b/system/libraries/Session.php @@ -220,7 +220,7 @@ class CI_Session { } // Does the User Agent Match? - if ($this->CI->config->item('sess_match_useragent') == TRUE AND $session['user_agent'] != substr($this->CI->input->user_agent(), 0, 50)) + if ($this->CI->config->item('sess_match_useragent') == TRUE AND trim($session['user_agent']) != trim(substr($this->CI->input->user_agent(), 0, 50))) { $this->sess_destroy(); return FALSE; diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 06215f732..78e1ecb82 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -75,6 +75,7 @@ Change Log
  • Documented the timezones() function in the Date Helper.
  • Documented unset_userdata in the Session class.
  • Fixed a bug in Validation where valid_ip() wasn't called properly
  • +
  • Fixed a bug in the Session library where user agent matching would fail on user agents ending with a space.
  • Fixed a bug in database driver where num_rows property wasn't getting updated.
  • Fixed a bug in captcha calling an invalid PHP function.
  • Fixed a bug in _html_entity_decode_callback() when 'global_xss_filtering' is enabled.
  • -- cgit v1.2.3-24-g4f1b