diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-13 18:59:53 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-13 18:59:53 +0000 |
commit | 581bc6a267f2377addd53286b27a282b44816257 (patch) | |
tree | e10604604c55c690bc214bea68e8e3779a5543e3 /includes | |
parent | b81d3d93b8b64b3e0c3f03d267cf601016dcb4cf (diff) | |
download | brdo-581bc6a267f2377addd53286b27a282b44816257.tar.gz brdo-581bc6a267f2377addd53286b27a282b44816257.tar.bz2 |
- more coding style fixes.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 2f8994495..82674223e 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -513,7 +513,7 @@ function format_interval($timestamp) { function format_date($timestamp, $type = "medium", $format = "") { global $user; - // $timestamp += ($user->timezone) ? $user->timezone - date("Z") : 0; + $timestamp += ($user->timezone) ? $user->timezone - date("Z") : 0; switch ($type) { case "small": |