Skip to content
Snippets Groups Projects
  1. Jul 13, 2018
  2. Jul 12, 2018
    • aydreeihn's avatar
      Final Additions For v1.11 · c3a2cbcd
      aydreeihn authored
      - Separate 'message' and 'response' variables on New Ticket Notice so they can be styles separately
      - Add Thread Event state for 'released'
      - Add 'refer' and 'release' permissions to the Role table
      - Update install-mysql
      - Update patch file name
      - Update core.sig
      - Set flags in correct place for class.depts.php
      - Make sure when opening Ticket, User stays selected if submitted with errors
      - Make sure Mail Box Protocol saves correctly when configuring emails
      c3a2cbcd
  3. Dec 17, 2017
  4. Oct 30, 2017
  5. Jun 05, 2017
  6. Dec 16, 2016
  7. Jun 03, 2016
    • Michael's avatar
      Internal error occurred #3 (with a lot more internal error occurred related changes) · d1f5d1ef
      Michael authored
      This commit updates a bunch of files and changes a lot of phrases. Basically it extracts "Internal error occurred" from existing phrases.
      I've re-ordered the phrases so "Internal error occurred" is always at the end after the actual informative error message.
      
      Example comparison before and after this commit:
      Before: 1 Phrase: "Internal error: Unable to print to PDF"
      After: 2 Phrases: "Unable to print to PDF." + "Internal error occurred"
      d1f5d1ef
  8. Apr 24, 2016
  9. Mar 25, 2016
  10. Mar 24, 2016
  11. Mar 18, 2016
    • Jared Hancock's avatar
      orm: Migrate create functionality to the constructor · 1ba40e35
      Jared Hancock authored
      Previously, the create method was used to create a new instance of an orm
      model (which would later result in an INSERT when persisted); however, some
      classes require or utilize varying parameters to their create() method,
      which PHP7 considers an error. Methods in subclasses must be defined with a
      calling signature compatible with the parent class.
      
      This patch shifts the concept of model creation to the constructor. Now, the
      constructor of ORM models is required to be compatible with that of
      ModelBase class. Now that most models do not define a constructor, this is
      much easier to control, and much more logical.
      
      Also, remove an issue where assignments on a relationship field to an
      instance of a super class of the foreign model would raise an error. This
      was previously addressed by re-classing the instance in the
      ModelInstanceManager::getOrBuild(); however that design would create
      multiple instances of the same object in memory, which defeats one of the
      primary design concepts of the ORM. This patch addresses the issue by
      allowing super-classes of the declared foreign model in relationship
      assignments.
      1ba40e35
  12. Sep 28, 2015
  13. Jun 24, 2015
    • Jared Hancock's avatar
      oops: Fix several small issues · a0e84ddf
      Jared Hancock authored
      * Fix warning for negative unix timestamps in Misc::db2gmtime
      * Fix crash because of parser context passed to getXxx functions
      * Fix inability to update email address
      a0e84ddf
  14. Jun 09, 2015
  15. Jun 08, 2015
  16. Apr 01, 2015
  17. Mar 05, 2015
  18. Jan 13, 2015
    • Jared Hancock's avatar
      filter: Implement several small things after discussion · 685b6480
      Jared Hancock authored
        * Add trashcan icon for newly-added actions
        * Categorize filter actions
        * Use imperative phrases for action descriptions
        * Drop check boxes from simple actions (like reject ticket)
        * Hide empty forms on new ticket pages
        * Do not store config for nondata fields for actions
        * Implement a multi-use feature for actions, which will allow using a
          action more than once (for instance, multiple email sends)
        * Filter actions are sortable
        * Send email has from address configurable
        * %{user} token is valid as a recipient
      685b6480
  19. Dec 31, 2014
    • Peter Rotich's avatar
      fixes: Review · 89c0d798
      Peter Rotich authored
      Key permissions definition array
      Move canned and faq permissions to their respective classes.
      89c0d798
  20. Dec 20, 2014
  21. Dec 08, 2014
  22. Jul 18, 2014
  23. Jul 11, 2014
  24. Jul 08, 2014
  25. Jul 02, 2014
  26. Jun 27, 2014
  27. Jun 25, 2014
    • Jared Hancock's avatar
      Fix some consistency issues · 6e225313
      Jared Hancock authored
      6e225313
    • 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
  28. Jun 02, 2014
    • Jared Hancock's avatar
      Implement default help topic · ef2b91a9
      Jared Hancock authored
      Use the topic associated with the email if any, and the topic defined as the
      system default as the last resort. In either case, the form associated with
      the help topic will be added to the ticket, but no data will be put into the
      form fields.
      ef2b91a9
  29. May 15, 2014
  30. May 07, 2014
    • Peter Rotich's avatar
      Limit ticket assignment to department members · 90e251f5
      Peter Rotich authored
      Add department setting to limit ticket assignment within department to
      department members only. This is necessary for departments with strict
      policy on who can access tickets.
      
      The setting doesn't limit team assignment or auto-assignment via help topics
      and ticket filters.
      90e251f5
  31. Apr 02, 2014
  32. Mar 17, 2014
  33. Jan 31, 2014
  34. Oct 09, 2013
    • 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
  35. Aug 26, 2013
  36. Aug 11, 2013
  37. Aug 09, 2013
  38. Jul 24, 2013
  39. Jul 10, 2013
    • Andrew Abdalian's avatar
      Spelling, grammar and readability fixups · c6c923f9
      Andrew Abdalian authored
      Spelling, grammar and readability in upgrader documents
        - Tweaked spelling, grammar and wording to make the text of the upgrader
          pages more readable.
      Fixed spelling regression
        - Higly —> Highly
      Spelling and readability fixes for /include/class.* files
        - Fixed some spelling mistakes
      A couple more spelling/readability fixes.
        - More fixes
      c6c923f9
Loading