Skip to content
Snippets Groups Projects
  1. Nov 19, 2019
  2. Nov 18, 2019
  3. Nov 14, 2019
  4. Nov 13, 2019
  5. Nov 12, 2019
  6. Nov 11, 2019
  7. Nov 08, 2019
  8. Nov 06, 2019
    • Peter Rotich's avatar
      Merge pull request #5149 from JediKev/issue/db-error-1062 · cca97eda
      Peter Rotich authored
      issue: DB Error #1062
    • JediKev's avatar
      issue: Format File Name · bd427cdf
      JediKev authored
      This formats the filename before using it in an error to avoid chance of
      XSS.
      bd427cdf
    • JediKev's avatar
      issue: DB Error #1062 · 27c925cc
      JediKev authored
      This addresses a long-time issue of the famous `DB Error #1062` when
      uploading an Inline File to a Draft. The issue is that the system does not
      check if an Attachment record exists before creating a new one. We create a
      new Attachment record, we go to save it, and the system errors out because
      that record already exists. This adds a check to see if the Attachment
      record already exists and if so we use that instead of creating a new one.
      27c925cc
  9. Nov 05, 2019
  10. Nov 04, 2019
    • aydreeihn's avatar
      Issue: Edit Task Fields · 05cbb758
      aydreeihn authored
      This commit fixes an issue where you were unable to edit custom fields if they were added to a task form after a task had been created.
      05cbb758
  11. Nov 01, 2019
  12. Oct 31, 2019
  13. Oct 30, 2019
    • JediKev's avatar
      orm: Refetch Failure · eb4bda84
      JediKev authored
      This addresses an ORM failure where upon refetching an object from the
      database that no longer exists the system crashes hard. We use the `one()`
      method which expects one result, if there is no result it throws a
      `DoesNotExist` exception. We are not catching the exception properly which
      crashes osTicket and forces you to clear the session via browser or
      database.
      eb4bda84
    • JediKev's avatar
      issue: Delete Org Session Failure · bbd0c255
      JediKev authored
      This addresses an issue on the Forum where deleting an Organization causes
      the session to fail. This is due to the Organization QuerySet being stored
      in the session and not being cleared out when deleted from the system. This
      causes the system to try to refetch the object from the database which it's
      not there as it's been deleted and therefore causes the session to crash.
      bbd0c255
    • Rikki Masters's avatar
      Mark as Answered permission correction · 52aaa0bb
      Rikki Masters authored
  14. Oct 29, 2019
    • JediKev's avatar
      issue: Attachment Filter · 9f4fbc27
      JediKev authored
      This addresses issue 5123 where fetched Emails do not reject attachments
      that are not allowed. This is due to setting a File ID inside of an array
      called `$file[]` but not unsetting it when the attachment hits an
      FileUploadError. This updates class MailFetch to set the file array back to
      empty so that the ID is cleared and the error is added correctly which
      rejects the attachment.
      9f4fbc27
Loading