Skip to content

Commit

Permalink
[TASK] Remove useless text from logging module
Browse files Browse the repository at this point in the history
The text about the time restriction inside the logging module can be
removed because:

- if no time filter is used, it takes place in the UI by giving the
  information that the search starts 1970
- if the filter is used, the information can be found inside the filter,
  just like for all other filter options

Resolves: #99539
Releases: main
Change-Id: Iccdf83f5a607b0260baa44603fef0b80c57fcec4
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77382
Reviewed-by: Josef Glatz <josefglatz@gmail.com>
Tested-by: Josef Glatz <josefglatz@gmail.com>
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Benni Mack <benni@typo3.org>
Tested-by: core-ci <typo3@b13.com>
  • Loading branch information
georgringer authored and bmack committed Jan 16, 2023
1 parent 1c4cfe0 commit 53e062e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
3 changes: 0 additions & 3 deletions typo3/sysext/belog/Resources/Private/Language/locallang.xlf
Expand Up @@ -90,9 +90,6 @@
<trans-unit id="overview" resname="overview">
<source>Overview</source>
</trans-unit>
<trans-unit id="logForNonPageRelatedActionsOrRootLevelOrPage" resname="logForNonPageRelatedActionsOrRootLevelOrPage">
<source>Log %s from %s to %s</source>
</trans-unit>
<trans-unit id="type_1" resname="type_1">
<source>DB</source>
</trans-unit>
Expand Down
Expand Up @@ -7,16 +7,6 @@

<f:for each="{groupedLogEntries}" as="pidEntry" key="pid">
<div>
<h2>
<f:translate
key="logForNonPageRelatedActionsOrRootLevelOrPage"
arguments="{
0: '',
1: '{f:format.date(format:\'{settings.dateFormat} {settings.timeFormat}\', date:\'@{constraint.startTimestamp}\')}',
2: '{f:format.date(format:\'{settings.dateFormat} {settings.timeFormat}\', date:\'@{constraint.endTimestamp}\')}'
}"
/>
</h2>
<f:for each="{pidEntry}" as="day" key="dayTimestamp">
<h3>
<f:format.date format="{settings.dateFormat}">@{dayTimestamp}</f:format.date>
Expand Down

0 comments on commit 53e062e

Please sign in to comment.