Skip to content

Commit

Permalink
Removed session data from support bundle generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasSchmitt committed Feb 2, 2024
1 parent 9c104dd commit 8a03c57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 7.0.16 2024-??-??
- 2024-02-02 Removed session data from support bundle generator.
- 2024-02-02 Prevent error message 'MissingTicketID' of ArticleList in inbound phone call screen. Thanks to Jannis Kleinrensing (@JannisKleinrensing), maxence. [PR#346](https://github.com/znuny/Znuny/pull/346)
- 2024-02-02 Add html comment end tag into template file. Thanks to @kolbma. [PR#528](https://github.com/znuny/Znuny/pull/528)
- 2024-01-24 Fixed layout of error message in customer interface.
Expand Down
3 changes: 3 additions & 0 deletions Kernel/System/SupportBundleGenerator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,9 @@ sub _GetCustomFileList {
# do not include documentation
next FILE if $File =~ /doc/;

# do not include sessions
next FILE if $File =~ /sessions/;

# add directory to list
push @Files, $Self->_GetCustomFileList( Directory => $File );
}
Expand Down

0 comments on commit 8a03c57

Please sign in to comment.