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
diff options
context:
space:
mode:
-rw-r--r--core/Date.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/Date.php b/core/Date.php
index 78f225924b..0e2287a916 100644
--- a/core/Date.php
+++ b/core/Date.php
@@ -231,7 +231,6 @@ class Piwik_Date
if($utcOffset !== false) {
return (int)($this->timestamp - $utcOffset * 3600);
}
- // @fixme
// The following code seems clunky - I thought the DateTime php class would allow to return timestamps
// after applying the timezone offset. Instead, the underlying timestamp is not changed.
// I decided to get the date without the timezone information, and create the timestamp from the truncated string.