Skip to content
Snippets Groups Projects
  1. Dec 18, 2019
    • JediKev's avatar
      session: Destroy Warning · 8c698910
      JediKev authored
      This addresses the `session_destroy()` warning many people are receiving
      with PHP 7+. The warning states `PHP Warning:  session_destroy(): Session
      callback expects true/false return value`. This is because our session
      destroy method does not always return true/false, sometimes it returns
      `int(1)`. This adds a check to see if the session was not deleted
      successfully, if not it returns false, otherwise it returns true. This will
      ensure `session_destroy()` always receives a true/false return value.
      8c698910
  2. Nov 25, 2019
  3. Nov 21, 2019
  4. Nov 19, 2019
  5. Nov 18, 2019
  6. Nov 14, 2019
  7. Nov 13, 2019
  8. Nov 12, 2019
  9. Nov 11, 2019
  10. Nov 08, 2019
  11. Nov 06, 2019
    • Peter Rotich's avatar
      Merge pull request #5149 from JediKev/issue/db-error-1062 · cca97eda
      Peter Rotich authored
      issue: DB Error #1062
    • JediKev's avatar
      issue: Format File Name · bd427cdf
      JediKev authored
      This formats the filename before using it in an error to avoid chance of
      XSS.
      bd427cdf
    • JediKev's avatar
      issue: DB Error #1062 · 27c925cc
      JediKev authored
      This addresses a long-time issue of the famous `DB Error #1062` when
      uploading an Inline File to a Draft. The issue is that the system does not
      check if an Attachment record exists before creating a new one. We create a
      new Attachment record, we go to save it, and the system errors out because
      that record already exists. This adds a check to see if the Attachment
      record already exists and if so we use that instead of creating a new one.
      27c925cc
  12. Nov 05, 2019
  13. Nov 04, 2019
    • aydreeihn's avatar
      Issue: Edit Task Fields · 05cbb758
      aydreeihn authored
      This commit fixes an issue where you were unable to edit custom fields if they were added to a task form after a task had been created.
      05cbb758
  14. Nov 01, 2019
Loading