aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--timestring.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/timestring.rb b/timestring.rb
index 29c2dee..21996d7 100644
--- a/timestring.rb
+++ b/timestring.rb
@@ -71,8 +71,10 @@ class TimeString
end
end
def to_s
+ # This code always requires to be run on a UTC system,
+ # which dudle.open-communication.net is
if @time
- "#{CGI.escapeHTML(@date.to_s)} #{time_to_s}"
+ "#{CGI.escapeHTML(@date.to_s)} #{time_to_s} (UTC)"
else
CGI.escapeHTML(@date.to_s)
end