Skip to content
Snippets Groups Projects
  1. Dec 19, 2014
  2. Dec 15, 2014
  3. Dec 10, 2014
  4. Nov 28, 2014
    • Wessel Dankers's avatar
      Fix unnecessary writes with multiple memcache servers · d9dc7c0f
      Wessel Dankers authored
      Fixes a bug in Memcache.php that would cause every fetch to also
      result in a push if multiple memcache servers were being used.
      
      If multiple memcache servers are in use, the code needs to check
      if they aren't out of sync. If they are, the most recent data needs
      to be pushed to all mirrors.
      
      The original code compared the parsed data structures using ===,
      but that always fails because that just does a pointer comparison
      and not a deep comparison.
      
      Changed the code to compare the original unparsed values instead.
      Also added a few debug-level log statements.
      d9dc7c0f
  5. Nov 22, 2014
  6. Nov 21, 2014
  7. Nov 12, 2014
  8. Nov 11, 2014
  9. Nov 10, 2014
  10. Nov 05, 2014
  11. Nov 03, 2014
  12. Oct 31, 2014
  13. Oct 30, 2014
  14. Oct 27, 2014
  15. Oct 22, 2014
    • Daan van Renterghem's avatar
      Fix client-certificate match if-check · 3224e870
      Daan van Renterghem authored
      `preg_match` returns `0` if no matches are found, `FALSE` only on error. This means that with the previous check unmatching certificates would not be identified, only when the preg_match itself would error.
      3224e870
  16. Oct 08, 2014
  17. Oct 06, 2014
  18. Oct 01, 2014
Loading