rfe: Extend DateTime for Week-Nrs (#9151)
This commit is contained in:
parent
a026f211cd
commit
1b32ab4846
3 changed files with 5 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
7.7.4
|
7.7.4
|
||||||
|
- rfe: Extend DateTime for Week-Nrs (#9151)
|
||||||
- fixed: 7.6 upgrade left some default content marked as packages
|
- fixed: 7.6 upgrade left some default content marked as packages
|
||||||
- fixed #9816: Syndicated content asset fails on feeds including a UTF8 BOM
|
- fixed #9816: Syndicated content asset fails on feeds including a UTF8 BOM
|
||||||
- fixed: Spam in the wiki (#10050)
|
- fixed: Spam in the wiki (#10050)
|
||||||
|
|
|
||||||
|
|
@ -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.
|
%P = An upper-case AM/PM.
|
||||||
%s = A two digit second.
|
%s = A two digit second.
|
||||||
%t = Time zone name.
|
%t = Time zone name.
|
||||||
|
%V = Week number.
|
||||||
%w = Day of the week.
|
%w = Day of the week.
|
||||||
%W = Day of the week abbreviated.
|
%W = Day of the week abbreviated.
|
||||||
%y = A four digit year.
|
%y = A four digit year.
|
||||||
|
|
@ -555,6 +556,7 @@ sub webguiDate {
|
||||||
"p" => "P",
|
"p" => "P",
|
||||||
"P" => "p",
|
"P" => "p",
|
||||||
"s" => "S",
|
"s" => "S",
|
||||||
|
"V" => "V",
|
||||||
"w" => "A",
|
"w" => "A",
|
||||||
"W" => "a",
|
"W" => "a",
|
||||||
"y" => "Y",
|
"y" => "Y",
|
||||||
|
|
|
||||||
|
|
@ -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.
|
%P = An upper-case AM/PM.
|
||||||
%s = A two digit second.
|
%s = A two digit second.
|
||||||
%t = Time zone name.
|
%t = Time zone name.
|
||||||
|
%V = week number.
|
||||||
%w = Day of the week.
|
%w = Day of the week.
|
||||||
%W = Day of the week abbreviated.
|
%W = Day of the week abbreviated.
|
||||||
%y = A four digit year.
|
%y = A four digit year.
|
||||||
|
|
@ -331,6 +332,7 @@ sub epochToHuman {
|
||||||
"p" => "P",
|
"p" => "P",
|
||||||
"P" => "p",
|
"P" => "p",
|
||||||
"s" => "S",
|
"s" => "S",
|
||||||
|
"V" => "V",
|
||||||
"w" => "A",
|
"w" => "A",
|
||||||
"W" => "a",
|
"W" => "a",
|
||||||
"y" => "Y",
|
"y" => "Y",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue