summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2011-04-07 09:10:21 +0200
committerYorhel <git@yorhel.nl>2011-04-07 09:10:21 +0200
commit61707a2dcf70262085df62727fa50fffd308e25e (patch)
treec76409c6d82826c3675e181064aa9761fbc24c48
parent13bab98d3b202e1b17b845524b0893f7c2c4b91d (diff)
Bugfix: Properly format future dates on my vn list
-rw-r--r--ChangeLog1
-rw-r--r--lib/VNDB/Handler/ULists.pm4
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bc8eefb..e6d8f4fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,7 @@
- Bugfix: Use the translatable role names on char<->vn link form
- Bugfix: Prevent the spiol dd to hide the del link on char<->trait form
- Bugfix: Hide pointless groups and commas on spoiler-hidden trait display
+ - Bugfix: Properly format future dates on my vn list
2.19 - 2011-03-30
- Character database:
diff --git a/lib/VNDB/Handler/ULists.pm b/lib/VNDB/Handler/ULists.pm
index 94007a73..363c2262 100644
--- a/lib/VNDB/Handler/ULists.pm
+++ b/lib/VNDB/Handler/ULists.pm
@@ -466,7 +466,9 @@ sub _vnlist_browse {
td class => 'tc2';
input type => 'checkbox', name => 'rid', value => $_->{rid} if $own;
end;
- td class => 'tc3', $self->{l10n}->datestr($_->{released});
+ td class => 'tc3';
+ lit $self->{l10n}->datestr($_->{released});
+ end;
td class => 'tc4';
cssicon "lang $_", mt "_lang_$_" for @{$_->{languages}};
cssicon "rt$_->{type}", mt "_rtype_$_->{type}";