diff options
author | emkael <emkael@tlen.pl> | 2016-11-03 23:22:40 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-03 23:22:40 +0100 |
commit | bef5754e4676a8a578550b6af24d050a946405eb (patch) | |
tree | 190a54af236d00c476b28799ba502a42205a95c5 /app/frontend/controls/CalendarGrid.php | |
parent | 94e03b260197122ae8f6d7dfedfb2a191fdae273 (diff) |
* more strict function definitions
Diffstat (limited to 'app/frontend/controls/CalendarGrid.php')
-rw-r--r-- | app/frontend/controls/CalendarGrid.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/frontend/controls/CalendarGrid.php b/app/frontend/controls/CalendarGrid.php index b168379..ddd17f2 100644 --- a/app/frontend/controls/CalendarGrid.php +++ b/app/frontend/controls/CalendarGrid.php @@ -7,7 +7,7 @@ Prado::using('Application.user.DbUser'); class CalendarGrid extends FacadeTemplateControl { public function setMonth($month) { - $this->setControlState('Month', $month); + $this->setControlState('Month', TPropertyValue::ensureInteger($month)); } public function getMonth() { @@ -15,7 +15,7 @@ class CalendarGrid extends FacadeTemplateControl { } public function setYear($year) { - $this->setControlState('Year', $year); + $this->setControlState('Year', TPropertyValue::ensureInteger($year)); } public function getYear() { |