Skip to content
Snippets Groups Projects
  1. Mar 27, 2019
  2. Mar 26, 2019
  3. 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
  4. Mar 21, 2019
    • JediKev's avatar
      issue: Multilingual FAQ Category w/ Parent · 103eed6b
      JediKev authored
      This addresses issue 4810 where having more than one language installed and
      trying to add a new FAQ Category with a Parent Category relation fails to
      add the Parent Category relation. This is due to multiple Select2 fields;
      the POST data includes only the last Select2 field's value instead of the
      one in the tab you're currently on. This adds a script to set all Select2
      fields in all the available languages to the same value so the POST will
      always contain the appropriate Parent ID no matter what language tab you’re
      on.
      103eed6b
  5. Mar 12, 2019
  6. Mar 11, 2019
    • JediKev's avatar
      issue: Duplicate Form Titles · 5bae5159
      JediKev authored
      This addresses an issue mentioned in the forum where having more than one
      custom field on a ticket shows the same title for all forms on the
      client-side ticket view (after creation). This adds an array of the form
      names indexed by sort order and displays them in the correct order with the
      correct names.
      5bae5159
  7. Mar 09, 2019
    • Peter Rotich's avatar
      Queue Columns · 7ce83498
      Peter Rotich authored
      Allow admin to setup columns when creating a new parent queue and address an
      issue where Assignee standard columns used a wrong Id.
      7ce83498
  8. Mar 08, 2019
  9. Mar 06, 2019
  10. Mar 05, 2019
  11. Mar 04, 2019
    • JediKev's avatar
      issue: FAQ Return Errors · f591cafe
      JediKev authored
      This addresses an issue reported on the Forum where creating a new FAQ and
      not filling out required information returns the correct error but returns
      the incorrect template (FAQ View Template). This is due to the check for an
      FAQ when determining the template to return. This adds a check for the FAQ
      ID to determine if it’s an actual FAQ or just a model instance.
      f591cafe
    • Peter Rotich's avatar
      Merge pull request #4771 from JediKev/issue/faq-search-results · e31420bd
      Peter Rotich authored
      issue: FAQ Search Results
      e31420bd
    • Peter Rotich's avatar
      Merge pull request #4759 from JediKev/issue/canned-resp-vars · 50558663
      Peter Rotich authored
      issue: Canned Response Variables
      50558663
    • JediKev's avatar
      issue: FAQ Search Results · cd4ba226
      JediKev authored
      This addresses an issue reported on the forum where searching for a keyword
      in FAQ search brings back more results than it should. This is due to the
      format of the query selecting the results, essentially, the `WHERE NOT`
      statement is not properly formatted so the `OR` statements take precedence
      over the `WHERE NOT` causing non-public results to be shown to the client.
      The `WHERE NOT` statement contains the bit to select from only public faqs
      and since the `OR` takes precedence it will return the non-public results
      too.
      cd4ba226
  12. Feb 27, 2019
  13. Feb 26, 2019
    • JediKev's avatar
      issue: Canned Response Variables · 1c8e97c8
      JediKev authored
      This addresses issue 4756 where the `%{recipient.ticket_link}` variable is
      not being replaced when the canned response is loaded in the reply box; all
      other link variables work. This is due to the recipient object not being
      passed to the variableReplacer which means the ticket_link is not available.
      This adds the recipient object to the variableReplacer so the ticket_link
      variable is properly replaced like the others on load.
      1c8e97c8
    • JediKev's avatar
      issue: PHP 7.2 Ticket Status · cb710243
      JediKev authored
      This addresses issue 4716 where updating a Ticket Status throws a fatal
      error of "Too few arguments" when using PHP 7.2. This is due to `$errors`
      not being passed to the `update()` function causing PHP 7.2 to freak out.
      This creates an `$errors` array and passes it to `update()` so PHP 7.2 is
      happy and we are all happy. :)
      cb710243
    • Peter Rotich's avatar
      Merge pull request #4745 from JediKev/issue/internal-note-ignored · d5f5825d
      Peter Rotich authored
      issue: Internal Note Ignored
      d5f5825d
  14. Feb 25, 2019
  15. Feb 22, 2019
    • JediKev's avatar
      issue: Custom Column Org Link · aad4c93b
      JediKev authored
      This addresses issue 4579 where setting a Custom Column to User Organization
      and choosing the User Org Link filter the system shows the wrong link to the
      Org. This is due to "scp/" not being added to the URL therefore showing an
      invalid link.
      aad4c93b
  16. Feb 21, 2019
  17. Feb 17, 2019
Loading