Skip to content
Snippets Groups Projects
  1. Apr 15, 2019
  2. Apr 11, 2019
    • JediKev's avatar
      issue: iFrame Single Quotes · ae5ced39
      JediKev authored
      It's all about the single quotes baby! Apparently I can't read; the single
      quotes are only meant for word options such as `'self'` and `'none'`. When
      adding single quotes to the `<host-source>` options it takes them
      literally…too literally. For example, if your options are `'localhost:80
      localhost:8080 localhost:8000'` then `'localhost:80` and `localhost:8000'`
      will be seen as "invalid" due to the single quotes. This removes the single
      quotes from every line that sets the CSP so all options are valid. This also
      adds single quotes around the `self` option so it stays valid as well.
      ae5ced39
  3. Apr 04, 2019
    • JediKev's avatar
      issue: sendAccessLink On NULL · 6f9f2e17
      JediKev authored
      This addresses an issue where entering a collaborator's email to send ticket
      email access link throws a fatal error. This is due to the method that
      checks for tickets with the User's email equal to the email provided. This
      only checks for User's emails not Collaborator emails. This adds a check for
      Collaborator emails as well so this will not crash out.
      6f9f2e17
  4. Apr 01, 2019
  5. Mar 29, 2019
  6. Mar 28, 2019
    • JediKev's avatar
      oops: Thread Variable Fatal Error · 97a9aa8d
      JediKev authored
      This addresses an issue introduced with 4737 where using `%{ticket.thread}`
      causes a fatal error. This is because `ObjectThread->asVar()` returns an
      object which cannot be converted to a string. This adds a `__tostring()`
      function to class ThreadEntries so it can be converted to a string properly.
      97a9aa8d
  7. Mar 27, 2019
  8. Mar 26, 2019
  9. Mar 22, 2019
    • JediKev's avatar
      issue: Task Print PDF · 8d8afbc0
      JediKev authored
      This addresses an issue where clicking print on a Task throws a fatal error.
      This is due to the Task2PDF function passing a string instead of an array to
      `Mpdf::__construct()`. The `__construct()` of class Mpdf requires an array
      of configurations so we are now passing an array instead of a string.
      8d8afbc0
Loading