Skip to content
Snippets Groups Projects
  1. Mar 27, 2019
  2. Mar 26, 2019
  3. Mar 21, 2019
  4. Mar 18, 2019
    • JediKev's avatar
      issue: Organizations Users Sort · 1214c753
      JediKev authored
      This addresses issue 4803 where sorting by Users on Organizations does not
      sort properly. It sorts by name instead of the User count. This corrects the
      value in the `$sortOptions` array from `users` to `user_count`.
      1214c753
    • Hans Chen's avatar
      fix bug · 17c7e1d1
      Hans Chen authored
      not sending new ticket alert to account manager.
      17c7e1d1
  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 06, 2019
  8. 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
  9. Feb 27, 2019
  10. 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
  11. Feb 25, 2019
  12. Feb 21, 2019
  13. Feb 17, 2019
  14. Feb 15, 2019
  15. Feb 14, 2019
    • JediKev's avatar
      issue: Upgrader Wrong Guide Link · 61e240c3
      JediKev authored
      This addresses issue 4738 where the Upgrade and Migration Guide link is
      incorrect. This updates the link to the new Documentation site.
      61e240c3
    • JediKev's avatar
      issue: No Save Button On Quicknotes · bff0647f
      JediKev authored
      This addresses issue 4725 where there is no save button when editing a quick
      note. This is due to the jQuery update which changed how a few things work
      with redactor.
      bff0647f
  16. Feb 06, 2019
  17. Feb 05, 2019
  18. Feb 04, 2019
    • JediKev's avatar
      issue: Translation Flags Not Clickable · 937fc5ce
      JediKev authored
      This addresses an issue where the second row of translation flags are not
      clickable when editing a Form with 23+ languages installed. This adds a
      `height` of "auto" so that the entire div fits the flags’ surface area,
      making them clickable again.
      937fc5ce
  19. Jan 31, 2019
  20. Jan 23, 2019
  21. Jan 17, 2019
    • JediKev's avatar
      issue: Hide Task Loading Overlay · 786653ef
      JediKev authored
      This addresses an issue where the Loading overlay on Tasks will not
      disappear after the request was submitted. This adds two lines to first hide
      the "Loading" modal and then toggle the overlay.
      786653ef
  22. Jan 07, 2019
  23. Jan 03, 2019
    • aydreeihn's avatar
      Issue: Tasks Within Tickets · 85f42422
      aydreeihn authored
      This commit addresses issues we had with viewing Task(s) within a Ticket:
      
      1. When viewing the table of all Tasks on a Ticket, the Options dropdown should only allow the Agent to Reopen or Close the Tasks based on the status of the Tasks.
      Ex: If there is only 1 Open Task, you should only see the 'Close' Option
          If there are 2 Closed Tasks, you should only see the 'Reopen' Option
          If there are multiple Tasks in which some are Open and some are Closed, you should see both the 'Reopen' and 'Close' options
      
      2. When viewing an individual Task within a Ticket, the status options were the opposite of what they should have been. Now, if the Task is Open, the Agent will see the option to 'Close' the Task. If the Task is Closded, the Agent will see the option to 'Reopen' the Task.
      85f42422
  24. Jan 02, 2019
    • JediKev's avatar
      issue: Dashboard Export Period · b951032c
      JediKev authored
      This addresses an issue where exporting statistics via the dashboard within
      a certain timeframe (eg. 07/01/2018 -> One Quarter) will always export the
      statistics from the selected date up to today. This is due to the Period
      option always being set to "Up to today" when the Export button is clicked
      which in return exports the stats from the selected start date to today.
      This adds JS to set the period the Agent selects so the Export will return
      the stats from the selected date to the selected period.
      b951032c
  25. Dec 10, 2018
Loading