[svn r17480] minor bug en line 72 admin/calendar.lib.php add in changelog.html see FS#3391

skala
Carlos Vargas 16 years ago
parent 85061309e7
commit 0f093d6ec3
  1. 1
      documentation/changelog.html
  2. 3
      main/admin/calendar.lib.php

@ -197,6 +197,7 @@
<li>Tracking - A new page to display access details by user is available under the Reporting tab, in the user details in a course</li>
<li>Removed header from learning path tool. It was taking too much space and was not flexible enough for CSS styling</li>
<li>Improved speed of 1.6 to 1.8 migration by adding indexes</li>
<li>Improved Implemented of the Global Agenda see FS#3391 </li>
</ul>
<br />
<h3>Debugging</h3>

@ -67,9 +67,6 @@ $MonthsLong = array (get_lang("JanuaryLong"), get_lang("FebruaryLong"), get_lang
function display_minimonthcalendar($agendaitems, $month, $year, $monthName)
{
global $DaysShort;
$month=Database::escape_string($month);
$month=Database::escape_string($monthName);
$year=Database::escape_string($year);
//Handle leap year
$numberofdays = array (0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
if (($year % 400 == 0) or ($year % 4 == 0 and $year % 100 <> 0))

Loading…
Cancel
Save