Skip to content
Snippets Groups Projects
  1. Jul 14, 2016
    • Jared Hancock's avatar
      thread: Fix crash processing problem attachments · 29c4cba0
      Jared Hancock authored
      The ThreadEntry::normalizeFileInfo() method is called from ::create(), but
      before the thread entry is saved. Therefore, the ::getThread() and
      ::getObject() methods will likely not return a valid object for posting the
      thread message.
      29c4cba0
  2. May 12, 2016
  3. Apr 19, 2016
  4. Apr 14, 2016
  5. Apr 13, 2016
    • Jared Hancock's avatar
      files: Attempt to standardize thread entry attaching · 00a1371d
      Jared Hancock authored
      This commit attempts to remove some of the confusing and redundant code to
      attach files to thread entries and replace it with a single code base. It
      also attempts to remove and error where a single attachment might be
      attached to a new thread entry multiple times.
      
      Lastly, it removes the insert followed by an update for emails with inline
      images. This should improve performance processing emails as only one trip
      to the database is now necessary for thread entries with inline images.
      00a1371d
  6. Mar 25, 2016
  7. 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
    • Jared Hancock's avatar
      php: Support PHP 7, require at least 5.4 · 9616a61d
      Jared Hancock authored
      This commit attempts to remove all coding standard warnings emitted by PHP
      7.0.
      9616a61d
  8. Mar 17, 2016
    • Peter Rotich's avatar
      Textarea input cleanup · 5710c051
      Peter Rotich authored
      Let textarea widgets parse and clean input based on configured text format.
      Add cleanup routine to ThreadEntryBody
      Clean response/note inputs
      
      Conflicts:
      
      	include/class.forms.php
      	include/class.ticket.php
      5710c051
  9. Mar 01, 2016
  10. Jan 07, 2016
    • Peter Rotich's avatar
      Decouple autoresponse from alerts · 783c0991
      Peter Rotich authored
      This is commit reverts prior commit to prevent email loops by dead-banning
      alerts and auto-responses based on recent communication with the end user.
      783c0991
  11. Nov 16, 2015
    • Peter Rotich's avatar
      Make Avatars optional on thread view · 536cf883
      Peter Rotich authored
      Add a global option to disable avatars on thread correspondence . Agent's
      and user's profiles will still show an avatars.
      536cf883
    • Peter Rotich's avatar
      Thread View Sort Order · 2e70611b
      Peter Rotich authored
      Add a preference option to set the sort order of the thread entries in DESC or
      ASC order.
      
       * System Default order is ASC
       * Auto-scroll is disabled when sort order is set to DESC.
      2e70611b
    • Peter Rotich's avatar
      Make Relative Time Optional · 8235ffbb
      Peter Rotich authored
      Add preference to agent's profile to enable relative time use.
      8235ffbb
    • Peter Rotich's avatar
      Textarea input cleanup · d136963b
      Peter Rotich authored
      Let textarea widgets parse and clean input based on configured text format.
      Add cleanup routine to ThreadEntryBody
      Clean response/note inputs
      d136963b
  12. Nov 12, 2015
  13. Nov 03, 2015
  14. Nov 02, 2015
  15. Sep 28, 2015
  16. Sep 22, 2015
  17. Sep 12, 2015
    • Peter Rotich's avatar
      bug: Collaborators notice · f9e9da44
      Peter Rotich authored
      Fix case where collaborators were not being alerted
      Alert admin last on new ticket - just in case admin email is used by an agent.
      f9e9da44
    • Jared Hancock's avatar
      thread: Prefer user type from mail parsing · 9d349e8e
      Jared Hancock authored
      This patch changes the way the thread entry type and other properties are
      determined by using the userClass determined in the Mailer::decodeMessageId
      method which is preferred over the older heuristic methodology using the
      `From` email address alone.
      9d349e8e
  18. Aug 19, 2015
  19. Aug 18, 2015
  20. Aug 17, 2015
  21. Aug 10, 2015
  22. Aug 07, 2015
  23. Aug 04, 2015
  24. Jul 30, 2015
  25. Jul 21, 2015
  26. Jul 13, 2015
  27. Jul 10, 2015
  28. Jul 08, 2015
  29. Jun 23, 2015
Loading