diff options
author | xue <> | 2006-06-30 18:17:01 +0000 |
---|---|---|
committer | xue <> | 2006-06-30 18:17:01 +0000 |
commit | 8bc45f21071516fe0688c627ee920fd82d73a0c7 (patch) | |
tree | 471920ed2d3eb65e1342d5f381aad51895a7c9cb | |
parent | dc9d45afeab16d4e20702b1de13113c7445f5d8c (diff) |
Fixed #260.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/THttpSession.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -7,6 +7,7 @@ BUG: Ticket#234 - Postback target could be out of date (Qiang) BUG: Ticket#239 - Ondeactivate handler for the first View of MultiView is always fired (Qiang)
BUG: Ticket#244 - redirect() needs absolute URL (Qiang)
BUG: Ticket#245 - getIsSecureConnection() is not working correctly (Qiang)
+BUG: Ticket#260 - Wrong value of a configuration option in setUseTransparentSessionID (Qiang)
CHG: ensureChildControls() is now invoked in TControl::initRecursive (Qiang)
CHG: Postback enabled control will always disable default client-side browser action. (Qiang)
CHG: CSS and JS files in a theme are now included in page in alphabetic order (Qiang)
diff --git a/framework/Web/THttpSession.php b/framework/Web/THttpSession.php index f95cb72d..4439cf57 100644 --- a/framework/Web/THttpSession.php +++ b/framework/Web/THttpSession.php @@ -376,7 +376,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar if($this->_started)
throw new TInvalidOperationException('httpsession_transid_unchangeable');
else
- ini_set('session.use_only_cookies',TPropertyValue::ensureBoolean($value)?'1':'0');
+ ini_set('session.use_trans_sid',TPropertyValue::ensureBoolean($value)?'1':'0');
}
/**
|