diff --git a/.travis.yml b/.travis.yml index 1184c8e..237d4b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,18 @@ --- language: php +dist: trusty + php: - - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - - hhvm + +matrix: + include: + - php: "5.3" + dist: precise branches: only: 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()