Summary | lib/Horde/SessionHandler/memcache.php |
Queue | Horde Base |
Queue Version | 3.3.5 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | slusarz (at) horde (dot) org |
Requester | whatdoyouwant (at) gmail (dot) com |
Created | 10/06/2009 (5749 days ago) |
Due | |
Updated | 10/07/2009 (5748 days ago) |
Assigned | |
Resolved | 10/06/2009 (5749 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | 3.3.6 |
Patch | No |
Assigned to Michael Slusarz
State ⇒ Resolved
Bug: 8626Merge from horde-git: 82ab649321b2e7d418610f4d089c8d78c4763e45
MFH (docs/CHANGES) 1.1272
http://cvs.horde.org/diff.php/framework/SessionHandler/SessionHandler/Attic/memcache.php?rt=horde&r1=1.1.2.12&r2=1.1.2.13&ty=u
http://cvs.horde.org/diff.php/horde/docs/CHANGES?rt=horde&r1=1.515.2.568&r2=1.515.2.569&ty=u
Bug: 8626changelog
http://cvs.horde.org/diff.php/horde/docs/CHANGES?rt=horde&r1=1.1271&r2=1.1272&ty=u
Bug #8626: Fix updating memcache tracking info on session destroyhttp://git.horde.org/diff.php/framework/SessionHandler/lib/Horde/SessionHandler/Memcache.php?rt=horde-git&r1=340a3e714b86c6bc9f2bafc2a6b64c3f41aaff8d&r2=2eb27c9cb7d316e4665ac9fda78fa79836544427
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ lib/Horde/SessionHandler/memcache.php
Queue ⇒ Horde Base
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
data from memcache. This can be seen when turning on horde logging to
DEBUG. This was also present in 3.3.4
it's checking against false
should check against true like this:
line 253-256 of memcache.php (only line 253 changed to true instead of false):
if ($result !== true) {
Horde::logMessage('Failed to delete session (id = ' . $id
. ')', __FILE__, __LINE__, PEAR_LOG_DEBUG);
return false;
}