From bd2e540edef0b711a899fbb8ba7da037a8f00f07 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 31 Mar 2015 15:15:09 +0100 Subject: [PATCH] Issue #2443693 by mradcliffe, daffie: PostgreSQL: Fix views\Tests\Handler\ArgumentDateTest --- core/modules/views/src/Plugin/views/query/Sql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/src/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php index a110af0f53b..b09be7efff4 100644 --- a/core/modules/views/src/Plugin/views/query/Sql.php +++ b/core/modules/views/src/Plugin/views/query/Sql.php @@ -1759,7 +1759,7 @@ class Sql extends QueryPluginBase { 'l' => 'Day', // No format for Day of the month without leading zeros. 'j' => 'DD', - 'W' => 'WW', + 'W' => 'IW', 'H' => 'HH24', 'h' => 'HH12', 'i' => 'MI',