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:
authormattpiwik <matthieu.aubry@gmail.com>2012-02-04 22:32:08 +0400
committermattpiwik <matthieu.aubry@gmail.com>2012-02-04 22:32:08 +0400
commite2d831307b5277b0162cd4056fdce26c9b31aacb (patch)
tree293b698479704a8b5105bc3865fd76ce900838c1 /core/Date.php
parentc7d93e1972855db5544e6a08ce58d2922c8af42c (diff)
I'm still curious how I didn't come up with a better implementation, but removing FIXME for now
git-svn-id: http://dev.piwik.org/svn/trunk@5757 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Date.php')
-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.