diff --git a/core/modules/node/node.views.inc b/core/modules/node/node.views.inc index 71fe205..fb92074 100644 --- a/core/modules/node/node.views.inc +++ b/core/modules/node/node.views.inc @@ -395,7 +395,7 @@ function node_views_data() { 'help' => t('Date in the form of CCYYMMDD.'), 'argument' => array( 'field' => 'published', - 'id' => 'node_published_fulldate', + 'id' => 'created_fulldate', ), ); @@ -404,7 +404,7 @@ function node_views_data() { 'help' => t('Date in the form of YYYYMM.'), 'argument' => array( 'field' => 'published', - 'id' => 'node_published_year_month', + 'id' => 'created_year_month', ), ); @@ -413,7 +413,7 @@ function node_views_data() { 'help' => t('Date in the form of YYYY.'), 'argument' => array( 'field' => 'published', - 'id' => 'node_published_year', + 'id' => 'created_year', ), ); @@ -422,7 +422,7 @@ function node_views_data() { 'help' => t('Date in the form of MM (01 - 12).'), 'argument' => array( 'field' => 'published', - 'id' => 'node_published_month', + 'id' => 'created_month', ), ); @@ -431,7 +431,7 @@ function node_views_data() { 'help' => t('Date in the form of DD (01 - 31).'), 'argument' => array( 'field' => 'published', - 'id' => 'node_published_day', + 'id' => 'created_day', ), ); @@ -440,7 +440,7 @@ function node_views_data() { 'help' => t('Date in the form of WW (01 - 53).'), 'argument' => array( 'field' => 'published', - 'id' => 'node_published_week', + 'id' => 'created_week', ), );