v0.7.3까지 반영 #114

Closed
Hide_D wants to merge 310 commits from devel into master
Showing only changes of commit a19661199e - Show all commits
+6 -4
View File
@@ -50,13 +50,15 @@ class Date extends \sammo\Event\Condition{
}
$lhs = [
$this->year,
$this->month
];
$rhs = [
$this->year!==null?(int)$env['year']:null,
$this->month!==null?(int)$env['month']:null
];
$rhs = [
$this->year,
$this->month
];
$value = false;
switch($this->cmp){