From fa7c9fa4ff070006d3b0beabd0ca2a06b037c431 Mon Sep 17 00:00:00 2001 From: Marco Rougeth Date: Tue, 25 Nov 2014 15:44:25 -0200 Subject: [PATCH] =?UTF-8?q?Validade=20da=20matr=C3=ADcula=20pela=20data=20?= =?UTF-8?q?considera=20apenas=20dia/m=C3=AAs/ano?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib.php b/lib.php index d75ec2b..1d0e2df 100644 --- a/lib.php +++ b/lib.php @@ -283,7 +283,10 @@ class enrol_ilbead_plugin extends enrol_plugin { $enrol = enrol_get_plugin('ilbead'); $timestart = time(); if ($instance->enrolperiod) { - $timeend = $timestart + $instance->enrolperiod; + $timeend = date("Y/m/d", (string)($timestart + $instance->enrolperiod)); + list($year, $month, $day) = split("/", $timeend); + $timeend = (int)strtotime("$year-$month-$day 23:59:59"); + } else { $timeend = 0; }