rfe: Extend DateTime for Week-Nrs (#9151)

This commit is contained in:
JT Smith 2009-04-16 17:06:50 +00:00
parent a026f211cd
commit 1b32ab4846
3 changed files with 5 additions and 0 deletions

View file

@ -1,4 +1,5 @@
7.7.4
- rfe: Extend DateTime for Week-Nrs (#9151)
- fixed: 7.6 upgrade left some default content marked as packages
- fixed #9816: Syndicated content asset fails on feeds including a UTF8 BOM
- fixed: Spam in the wiki (#10050)

View file

@ -513,6 +513,7 @@ A string representing the output format for the date. Defaults to '%z %Z'. You c
%P = An upper-case AM/PM.
%s = A two digit second.
%t = Time zone name.
%V = Week number.
%w = Day of the week.
%W = Day of the week abbreviated.
%y = A four digit year.
@ -555,6 +556,7 @@ sub webguiDate {
"p" => "P",
"P" => "p",
"s" => "S",
"V" => "V",
"w" => "A",
"W" => "a",
"y" => "Y",

View file

@ -287,6 +287,7 @@ A string representing the output format for the date. Defaults to '%z %Z'. You c
%P = An upper-case AM/PM.
%s = A two digit second.
%t = Time zone name.
%V = week number.
%w = Day of the week.
%W = Day of the week abbreviated.
%y = A four digit year.
@ -331,6 +332,7 @@ sub epochToHuman {
"p" => "P",
"P" => "p",
"s" => "S",
"V" => "V",
"w" => "A",
"W" => "a",
"y" => "Y",