From c0928ffa3293c10245b488850a306c10364b33ac Mon Sep 17 00:00:00 2001 From: Stefan Eickhoff Date: Sat, 5 Dec 2015 12:01:31 +0100 Subject: [PATCH 1/2] Update BlogCategoriesWidget.php --- code/widgets/BlogCategoriesWidget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/widgets/BlogCategoriesWidget.php b/code/widgets/BlogCategoriesWidget.php index 14944df..1429dab 100644 --- a/code/widgets/BlogCategoriesWidget.php +++ b/code/widgets/BlogCategoriesWidget.php @@ -57,7 +57,7 @@ class BlogCategoriesWidget extends Widget ->setMaxLength(3); $fields[] = DropdownField::create( - 'Order', _t('BlogCategoriesWidget.Sort.Label', 'Sort'), array('Title' => 'Title', 'Created' => 'Created', 'LastUpdated' => 'Updated') + 'Order', _t('BlogCategoriesWidget.Sort.Label', 'Sort'), array('Title' => 'Title', 'Created' => 'Created', 'LastEdited' => 'Updated') ) ->setDescription(_t('BlogCategoriesWidget.Sort.Description', 'Change the order of categories shown by this widget.')); From c642723694e8a0e2fc288ddb5e220974f93c7f68 Mon Sep 17 00:00:00 2001 From: Stefan Eickhoff Date: Sat, 5 Dec 2015 12:07:38 +0100 Subject: [PATCH 2/2] Update BlogTagsWidget.php --- code/widgets/BlogTagsWidget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/widgets/BlogTagsWidget.php b/code/widgets/BlogTagsWidget.php index a5ac177..f2b4677 100644 --- a/code/widgets/BlogTagsWidget.php +++ b/code/widgets/BlogTagsWidget.php @@ -57,7 +57,7 @@ class BlogTagsWidget extends Widget ->setMaxLength(3); $fields[] = DropdownField::create( - 'Order', _t('BlogTagsWidget.Sort.Label', 'Sort'), array('Title' => 'Title', 'Created' => 'Created', 'LastUpdated' => 'Updated') + 'Order', _t('BlogTagsWidget.Sort.Label', 'Sort'), array('Title' => 'Title', 'Created' => 'Created', 'LastEdited' => 'Updated') ) ->setDescription(_t('BlogTagsWidget.Sort.Description', 'Change the order of tags shown by this widget.'));