Skip to content
Snippets Groups Projects
  1. Jun 18, 2014
    • Jared Hancock's avatar
      orm: Fix issues surrounding MySQL commands OoS · 8dc4f379
      Jared Hancock authored
      Several places in the code initialize a list of objects from the database
      and only fetch one item. In certain instances (which seem almost like a race
      condition), MySQL will feel like there are more records available in the
      database and will complain with "Commands out of sync, you can't run the
      command now".
      
      This patch addresses the issue by utilizing the ::one() method of the
      QuerySet where only one record is expected. The ::one() method is further
      designed to fetch all one results (which satisfies the MySQL client library)
      and return the first item.
      8dc4f379
  2. Jun 09, 2014
  3. Jun 05, 2014
  4. Jun 04, 2014
  5. Jun 03, 2014
  6. Jun 02, 2014
  7. May 30, 2014
  8. May 29, 2014
  9. May 28, 2014
  10. May 27, 2014
  11. May 26, 2014
    • Jared Hancock's avatar
      session: Properly track new sessions · 3828a649
      Jared Hancock authored
      ee91d179 introduced a slightly different
      tracking system for detecting sessions. Instead of completely disabling the
      session system for AJAX and cron requests, it detects if the session is new
      or not based on the session_id() and existing data in the session backend.
      
      However, the patch did not correctly determine if a session was new.
      Instead, it flagged all session as existing. This patch fixes the detection
      of existing session data so that AJAX and cron requests can operate without
      writing session data to the backend.
      3828a649
    • Jared Hancock's avatar
      forms: maxlength of 0 means disable maxlength · 13312ddf
      Jared Hancock authored
      Instead, previously, a maxlength of zero effectively disabled the field,
      because it prevented any user input into the field.
      13312ddf
    • kioan's avatar
      Update class.mailparse.php function splitHeaders · 01209e2f
      kioan authored
      function splitHeaders updated in order to correctly parse mail header lines
      starting with tabs
      01209e2f
Loading