Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-24Update doc blocks with new name (#15857)Stefan Giehl
* update doc blocks with new name * submodule updates * updates expected UI files
2019-07-05Update the link tag for all php files (#14635)Luca
I updated the link tag for all php files with the new matomo link. Not sure if it is realistic that this will get merged but I though that someday someone has to do this(?)
2015-09-25Remove check for visitorNotFoundInDb request metadata since it will never be ↵diosmosis
set. If a tracker request is for an existing visit in the past, then the site creation time will always be earlier, since new action will be later than the original visit (so the original visit would have changed the creation time).
2015-09-25Cover case in SitesManagerRequestProcess where ts_created is not found in ↵diosmosis
tracker cache more explicitly. Make sure the site created time is not modified in this case.
2015-09-25Fixing failing system test (EcommerceOrderWithItemsTest).diosmosis
2015-09-25Replicate old logic in ArchiveInvalidator to the letter to get some tests to ↵diosmosis
pass.
2015-09-25Remove depedency to SitesManager plugin in core ArchiveInvalidator service ↵diosmosis
by moving logic to new request processor. ArchiveInvalidator used to update site creation time. The reasoning was, if we tracked data in the past that was before the site's creation time, the site creation time should be updated, so it will be displayed in the UI. The tracking should trigger archive invalidation which should eventually trigger an update to the site creation time. This is incorrectly mixing concerns. Now the new request processor will make this change at the moment old data is tracked. New test included.