There's a bug in includes/SMW_ParserExtensions.php, r63949 (appears to
have been there from the beginning).  The fix is below.

        In doSetRecurringEvents() on line 407, where the code is handling
situations where unit="month" you will find:

$cur_month %= 12;

        This line causes a bug as soon as the sequence of events rolls over
into the following year, as it sets cur_month to 0 instead of 1 at that
point.  In the next iteration this then cascades into setting cur_year
to an invalid value as well.

        The fix is to replace line 407 with this:

$cur_month = ($cur_month % 12) + 1;

        
Al



------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Semediawiki-devel mailing list
Semediawiki-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/semediawiki-devel

Reply via email to