Changeset 276
- Timestamp:
- 10/11/06 13:25:18 (2 years ago)
- Files:
-
- eaccelerator/branches/0.9.5/ChangeLog (modified) (1 diff)
- eaccelerator/branches/0.9.5/cache.c (modified) (1 diff)
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/cache.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/branches/0.9.5/ChangeLog
r275 r276 1 2006-10-10 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 3 * Fix a bug in the ttl of the cache. see ticket #182 4 1 5 2006-09-19 Hans Rakers <hans at parse dot nl> 2 6 3 * Get session config variables from local values instead of global4 values. This enables altering of session-related settings like5 gc_maxlifetime, entropy_file and entropy_length through ini_set().6 This fixes ticket #1667 * Get session config variables from local values instead of global 8 values. This enables altering of session-related settings like 9 gc_maxlifetime, entropy_file and entropy_length through ini_set(). 10 This fixes ticket #166 7 11 8 12 2006-09-15 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> eaccelerator/branches/0.9.5/cache.c
r237 r276 634 634 if (p->ttl) { 635 635 if (p->ttl < t) { 636 add_assoc_long(list, "ttl", (p->ttl -t)); // ttl636 add_assoc_long(list, "ttl", p->ttl); // ttl 637 637 } else { 638 638 add_assoc_long(list, "ttl", -1); // expired eaccelerator/trunk/ChangeLog
r275 r276 1 2006-10-10 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 3 * Fix a bug in the ttl of the cache. see ticket #182 4 5 1 6 2006-09-19 Hans Rakers <hans at parse dot nl> 2 7 3 * Get session config variables from local values instead of global4 values. This enables altering of session-related settings like5 gc_maxlifetime, entropy_file and entropy_length through ini_set().6 This fixes ticket #1668 * Get session config variables from local values instead of global 9 values. This enables altering of session-related settings like 10 gc_maxlifetime, entropy_file and entropy_length through ini_set(). 11 This fixes ticket #166 7 12 8 13 2006-09-18 Hans Rakers <hans at parse dot nl> 9 14 10 * Fixed unbalanced ifdef in eaccelerator.h introduced in rev [269].11 This fixes ticket #17715 * Fixed unbalanced ifdef in eaccelerator.h introduced in rev [269]. 16 This fixes ticket #177 12 17 13 18 2006-09-15 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> eaccelerator/trunk/cache.c
r265 r276 631 631 if (p->ttl) { 632 632 if (p->ttl < t) { 633 add_assoc_long(list, "ttl", (p->ttl -t)); // ttl633 add_assoc_long(list, "ttl", p->ttl); // ttl 634 634 } else { 635 635 add_assoc_long(list, "ttl", -1); // expired