From 7860444b6dd31e1ccbdfd8b3eb8a99cf726aaff6 Mon Sep 17 00:00:00 2001 From: Svetlozar Stoyanov Date: Mon, 5 Jun 2017 14:28:57 +0300 Subject: [PATCH 1/5] Fix date filter label. --- classes/Kohana/Tart/Filter/Entry/Date.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/classes/Kohana/Tart/Filter/Entry/Date.php b/classes/Kohana/Tart/Filter/Entry/Date.php index a6d5430..6feda67 100644 --- a/classes/Kohana/Tart/Filter/Entry/Date.php +++ b/classes/Kohana/Tart/Filter/Entry/Date.php @@ -11,7 +11,9 @@ abstract class Kohana_Tart_Filter_Entry_Date extends Tart_Filter_Entry { public function render() { - return $this->parent()->form()->row('input', $this->name(), array(), array('type' => 'date', 'tabindex' => $this->tabindex())); + return $this->parent()->form()->row('input', $this->name(), array( + 'label' => $this->label(), + ), array('type' => 'date', 'tabindex' => $this->tabindex())); } public function default_callback() From 5b7f1b53e4da20bc7b1e6a5eece799af68e341ff Mon Sep 17 00:00:00 2001 From: Svetlozar Stoyanov Date: Mon, 5 Jun 2017 15:40:58 +0300 Subject: [PATCH 2/5] Fix Travis issue "HHVM image is broken" as suggest in Travis issue 7712. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1184c8e..95899f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ --- language: php +dist: trusty + php: - 5.3 - 5.4 From f6fa2afb6ce82400c874a740471dc13bcd7ef862 Mon Sep 17 00:00:00 2001 From: Svetlozar Stoyanov Date: Mon, 5 Jun 2017 15:49:50 +0300 Subject: [PATCH 3/5] Fix Travis PHP 5.3 build fail. Make 5.3 'precise', instead of 'trusty'. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 95899f0..7ab0c82 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,11 @@ php: - 7.0 - hhvm +matrix: + include: + - php: "5.3" + dist: precise + branches: only: - master From a595e900d05313acaa095e50cb4d0453130e9e8a Mon Sep 17 00:00:00 2001 From: Svetlozar Stoyanov Date: Mon, 5 Jun 2017 15:52:14 +0300 Subject: [PATCH 4/5] Fix remove PHP 5.3 build from 'trusty'. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7ab0c82..8f6101f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ language: php dist: trusty php: - - 5.3 - 5.4 - 5.5 - 5.6 From f917a1a89c796d98b387fb86460ca2b397d78376 Mon Sep 17 00:00:00 2001 From: Svetlozar Stoyanov Date: Tue, 6 Jun 2017 15:36:53 +0300 Subject: [PATCH 5/5] Remove HHVM from supported versions. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8f6101f..237d4b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,6 @@ php: - 5.5 - 5.6 - 7.0 - - hhvm matrix: include: