Skip to content
Snippets Groups Projects
  1. Sep 27, 2014
    • Jared Hancock's avatar
      orm: Fix MySQL occasional "Commands OOS" error · aeffcb73
      Jared Hancock authored
      Under certain intermittent circumstances (usually a significant number of
      ORM queries), the ORM will trigger a MySQL error:
      
      Commands out of sync; you can't run this command now
      
      Usually this MySQL error is related to buffered versus unbuffered queries.
      However, the ORM already uses buffered queries (MySQL calls it
      "store_result"). In this case, it appears there is some sort of race between
      fetching the result metadata before configuring the statement for buffering.
      (By "race" I mean that the error is not reliably triggered).
      
      This patch seems to fix the issue by configuring buffering before fetching
      result metadata — necessary to configure the fetching (output) phase of the
      statement.
      aeffcb73
  2. Sep 24, 2014
    • Andrés's avatar
      Fix #1302. · c960584d
      Andrés authored
      Fix issue that fails for get names on incorrect formats. Ex: J.Everybody
      c960584d
  3. Sep 17, 2014
    • Jared Hancock's avatar
      pages: Fix incorrect lookup of inline images · eb4d1b36
      Jared Hancock authored
      In some cases, a POST might be sent to the server and there be no draft. In
      such a case, neither the draft nor the body of the page can be inspected for
      images. Even worse, in some cases the previous images might be unlinked from
      the article without being relinked. Therefore, the images will no longer be
      linked to the page and will likely be purged from the system.
      eb4d1b36
  4. Sep 10, 2014
    • Jared Hancock's avatar
      email: Improve user identification from headers · 67782d9a
      Jared Hancock authored
      Previously, the code would scan the email headers until it found a positive
      match from any of the email headers scanned. Additionally, it would attempt
      to find the user from the tagged email references header. However, this
      algorithm assumed that the references header was constant and predictable in
      its ordering. Recent tests with Gmail prove otherwise in some tests.
      
      This patch changes the system so that only the tagged reference header is
      included in the References header, and it will scan all items in a header
      (namely the References header) until both the thread and a user are
      identified. If a user can be identified, the thread and user are returned.
      Otherwise, the first thread hit is returned.
      67782d9a
  5. Sep 09, 2014
  6. Sep 08, 2014
  7. Sep 05, 2014
  8. Sep 04, 2014
  9. Aug 28, 2014
  10. Aug 26, 2014
  11. Aug 22, 2014
    • Chefkeks's avatar
      Update again · 7881dbbf
      Chefkeks authored
      Thanks for the hint Peter.
      Changed it (again) and also tested at our system. /scp/slas.php works as intended - so only the slash "/" before "scp/slas.php" was missing.
      7881dbbf
  12. Aug 20, 2014
  13. Aug 18, 2014
  14. Aug 16, 2014
    • Kyra ツ's avatar
      Fix XSS Vulnerability In "tpl.inc.php" · 7eb8f287
      Kyra ツ authored
      Fix applied to where the value is directly output to browser instead of where fetched in case special chars are allowed in `code_name`, which may break logic prior to output.
      7eb8f287
  15. Aug 14, 2014
  16. Aug 06, 2014
  17. Aug 04, 2014
  18. Aug 01, 2014
  19. Jul 31, 2014
  20. Jul 30, 2014
  21. Jul 29, 2014
  22. Jul 18, 2014
    • Jared Hancock's avatar
      email: No bounces for system alerts · a333026d
      Jared Hancock authored
      Send an empty return-path envelope when sending out system alerts. If they
      should happen to bounce for any reason, they should not return to the system
      and create tickets.
      a333026d
    • Jared Hancock's avatar
      email: Setting default for priority and department · 522fa76d
      Jared Hancock authored
      Previously, osTicket introduced the ability to cascade defaults for the
      department and priority to the email mail boxes. However, the validation
      checks and display fall-backs were never added.
      522fa76d
    • Jared Hancock's avatar
      lists: Don't crash rendering a list · 87488e01
      Jared Hancock authored
      This patch fixes an issue where a fatal error would be triggered if the
      current value of a selection field on a custom form was a custom list item
      that has since been deleted.
      87488e01
Loading