Skip to content
Snippets Groups Projects
  1. Aug 02, 2018
    • aydreeihn's avatar
      Help Topic Required Error Message: · 9ef8f789
      aydreeihn authored
      This commit addresses an issue where the validation error for trying to save a Ticket without a Help Topic was not being shown as a result of the error message that was added to ensure that the Help Topic selected is Active.
      9ef8f789
    • aydreeihn's avatar
      Setting - Require Help Topic to Close: · cd3088c3
      aydreeihn authored
      This commit adds an Admin setting that requires a Ticket to have a Help Topic before it can be closed. It can be set by going to:
      
      Admin Panel | Settings | Tickets | Require Help Topic to Close
      
      If enabled, Tickets will have a warning banner across the bottom of the page, a warning banner when trying to change the Ticket status to Closed, and a warning flag beside the field when editing the Ticket.
      
      By default, this setting is NOT enabled.
      cd3088c3
  2. May 03, 2018
    • aydreeihn's avatar
      Quick Fixes: · cf8f7578
      aydreeihn authored
      - On ticket edit, only display inactive help topic warning if the ticket has a help topic
      - Inline edit file save fix
      - Remove future search/filter criteria for datetime fields that can't be in the future
      - Fix calculations for 'next 7 days' and 'next 30 days'. They were selecting dates between now and n days AGO instead of between now and n days in the future
      cf8f7578
  3. May 02, 2018
    • aydreeihn's avatar
      Quick Fix: · a72ff49f
      aydreeihn authored
      - On ticket edit, only display inactive help topic warning if the ticket has a help topic
      a72ff49f
  4. Oct 30, 2017
    • JediKev's avatar
      issue: Ticket Edit Internal Note · c29295d6
      JediKev authored
      This addresses issue 4028 where upon editing a ticket the Internal Note’s
      Instructions states that it is required in order to save the changes to
      the ticket. In reality this is not the case; the Internal Note is
      optional. So this updates the Instructions and changes the word 'required'
      to 'optional'.
      c29295d6
    • Jared Hancock's avatar
      ticket: Collapse TicketModel and Ticket · 5471a5cb
      Jared Hancock authored
      5471a5cb
  5. Jun 05, 2017
  6. Oct 25, 2016
    • Kevin Thorne's avatar
      Loading overlay · 4310d658
      Kevin Thorne authored
      Use class instead of id on form element that triggers overlay on submit.
      4310d658
  7. Mar 01, 2016
    • Peter Rotich's avatar
      Ticket Source · ef98afc6
      Peter Rotich authored
      Unify ticket source and preserve original (e.g Wed) source on ticket edit.
      ef98afc6
  8. Feb 05, 2016
  9. Aug 18, 2015
  10. Jul 21, 2015
  11. Jul 08, 2015
  12. Apr 10, 2015
  13. Dec 20, 2014
  14. Dec 09, 2014
  15. Dec 08, 2014
    • Jared Hancock's avatar
      i18n: Add locale-based date time formats · 0fbc09ad
      Jared Hancock authored
      This patch adds support for automatic date and time formatting based on a
      selection of locale. The locale can default to the system or user specified
      language+locale, or can be elected separately. For instance, English
      speakers can pick between US, GB, and many other English speaking locales.
      
      This also removes the need of the %timezone table and uses the timezonedb
      built into PHP 5.3+. User's can now select from a much longer list of
      database and no longer need to deal with the DST checkbox.
      0fbc09ad
  16. Oct 09, 2014
  17. Oct 02, 2014
  18. Jul 02, 2014
  19. Jun 25, 2014
    • Thane de Loth's avatar
      Adopt translation work from Thane de Loth · 7042e6c8
      Thane de Loth authored
      Multilanguage Support via gettext
      
      - added gettext encapsulations to all texts i thought necessary
      - added fallback function for the case that the gettext extension isn't loaded
      - added browser language detection
      - added gettext to the list of optional extensions in setup
      - rewritten some of the texts to use sprintf instead of appending strings
      - added german translation file
      - removed mark_overdue-confirm from cannedresponses.inc.php
      
      extend multi language support and a fex fixes
      
      - Better detection of translation files
      - Added functionality to redirect language codes (see redirecting
      language codes)
      - Ticket Status can be translated
      - The Datepicker can be translated
      - Extended functionality of 'testlang.php' to show what language code is
      used to translate
      
      Forgotten to apply a patch from RC5 to RC6
      
      - Forgotten to change $var to $vars in line 380 of class.mailfetch.php
      - Removed unneeded comment
      
      Added php_gettext as primary translation engine
      
      - Added php_gettext support (thanks to Danilo Segan and Steven
      Armstrong)
      - php_gettext is now the primary translation engine
      - Extended language detection functionality
      
      Add error/misconfiguration checks and fix undefined variables
      7042e6c8
  20. Apr 29, 2014
  21. Apr 01, 2014
  22. Jan 17, 2014
  23. Dec 11, 2013
    • Jared Hancock's avatar
      forms: Fixup possible XSS exploit · a0999cb4
      Jared Hancock authored
      Displaying field values on various pages and dialogs could result in cross
      site scripting exploits.
      
      Fixes osTicket/osTicket-1.8#296
      a0999cb4
    • Jared Hancock's avatar
      Allow edit of user on ticket-edit page · 431345ad
      Jared Hancock authored
      Previously, the user information could only be modified on the ticket-view
      page. For instance, if creating a new ticket for a user, no new information
      could be added or modified on the user until after the ticket was created
      
      Fixes osTicket/osTicket-1.8#281
      431345ad
  24. Nov 27, 2013
  25. Nov 26, 2013
  26. Nov 13, 2013
    • Jared Hancock's avatar
      Implement change of client · 182188cd
      Jared Hancock authored
      Allows the client to be changed on a ticket. Previously, only the
      information about the client associated with the ticket was editable. This
      patch permits assigning a completely different user to the ticket.
      182188cd
  27. Oct 31, 2013
    • Jared Hancock's avatar
      Fix parsing issue in strtotime() · b9ab14c1
      Jared Hancock authored
      PHP can't discern the difference between d/m/Y and m/d/Y when just the date
      is submitted to strtotime(). Unfortunately, strptime() is not available
      until PHP 5.1.0. This patch forces datepickers to change their values to
      YYYY-MM-DD upon submission to disambiguate parsing issues.
      
      Fixes #832
      b9ab14c1
  28. Oct 09, 2013
    • Jared Hancock's avatar
      Completion of dynamic forms concept · 43b74f4a
      Jared Hancock authored
      Moved to an initial form which specifies the ticket's priority and issue and
      changed the rendering to render things properly. Now the user can decide
      where priority shows on the client side, and the priority privacy setting is
      placed in the dynamic form wizard.
      
      The standard form is added to every ticket without option. Extra forms can
      be defined and associated with help topics which can additionally be added
      to tickets upon creation. This allows for standardization of the dynamic
      data location for searches and filtering.
      
      Implemented advanced search for dynamic data. Along with reinstating the
      basic ticket search on keywords
      
      Implemented ticket filtering on dynamic data for both keyword searches as
      well as searches for special fields (drop-down lists, etc.)
      
      Phone number for users is now completely optional
      43b74f4a
    • Jared Hancock's avatar
      Move client information to separate formset · 53666db6
      Jared Hancock authored
      This moves client information like name and email address out of the general
      dynamic forms data for a ticket. It really paves the way for the first-class
      user of the future.
      53666db6
    • Jared Hancock's avatar
      Rebase form sections to forms and remove form sets · 59c219f4
      Jared Hancock authored
      Previously, form sections were grouped into form sets for reusability. This
      patch drops the form sets and makes form sections the new "forms".
      Eventually a section-header field will be added that technically does not
      add any dynamic data to the form, but allows for the same feature as having
      a form set with multiple sections.
      59c219f4
    • Jared Hancock's avatar
      Dynamic data for osTicket · 9e75169e
      Jared Hancock authored
      *This is a major redesign / rework of the osTicket base*
      
      This patch drops the concept of static ticket metadata and allows for an
      admin-configurable arbitrary data that is attachable to tickets
      
      The system is architected such that the base osTicket install now comes with
      a "default" form that has fields for subject, name, email, and phone number.
      This form is editable to allow for the addition of arbitrary other fields;
      however, the basic fields must remain in order to be associated with a
      help-topic and attached to a ticket.
      
      This concept can be expanded to allow for arbitrary data associated with
      registered clients or ticket thread items.
      
      Forms are comprised of sections. Sections have a title and instructions
      properties and a list of fields. Fields have various implementations to
      represent different data such as text, long answer, phone number, datetime,
      yes/no, and selections, and are configurable to define the look and feel and
      interpretation of the respective form field.
      
      Dropdown lists are represented as "Dynamic Lists", which are
      admin-configurable lists of items. Dropdowns can be optionally represented
      as Bootstrap typeahead fields.
      
      This also adds the start of a simple ORM which will hopefully be expanded in
      the future to support multiple database platforms. Currently, only MySQL is
      implemented.
      9e75169e
    • Jared Hancock's avatar
      HTML ticket thread, inline images and draft support · 864d3539
      Jared Hancock authored
      Process inline attachments in thread entry and support inline images in
      piped emails
      
      Support inline images across the system, with draft support
      
      Migrate to a single attachment table
          That way we don't need a new table for everything we need to attach an
          inline image to (like a signature, for instance)
      
      Add richtext support for internal notes
      
      Implement images on site pages
      
      * Image paste in Redactor
      * Make non-local images optional
      * Placeholder for non-local images
      * Fix local image download hover
      * Don't re-attach inline images
      864d3539
  29. Sep 02, 2013
  30. Oct 18, 2012
Loading