Prior to version 4.0.0, event enrollments were being retrieved for the whole portal. This is incorrect and should be linked at least to the module being viewed. However, the change made, meant that only enrollments for the current calendar and not it's sub-calendars were being displayed. This requires a minor SPROC change to EventsSignupsMyEnrollments. Basically this makes it check whether the Mod...
In version 4.0.1, the Events module uses Now.Date to set the initially Selected Date. This is unfortunately based on the server date. In order to make this more relevant for users in different timezones to their servers (which is common), I have tried to correct the time (and therefore the associated date). This is not 100% accurate, but will be near enough for most use cases.: Therefore.... Getti...
A bug appeared during the week in the module, related to how some countries handle currency strings. For example in some European countries the decimal delimiter is a ','. So €5 can be represented as 5,00. The problem is PayPal doesn't accept this, in must be in the format 5.00. So I've added some coding to process the currency in a neutral format for passing to PayPal. Old code is:- strPayPalURL ...
The original version of my RSS Feed module (1.0.0), included Title, Description and Link as mandatory field. It also enabled PubDate, Creator and Category as optional fields. To this I have just added ImageURL (with Height and Width as optional attributes). This simply adds the picture at the bottom of the Description. The module is now version 1.0.1.
Having created a report that generates a What's New type display as detailed in my previous post, I wanted to create an RSS feed with pretty much the same content, because currently I use about 6 different feeds off the site, and it is a pain monitoring them all. I couldn't find a module that would generate an RSS feed based on a specific query, and whilst it is on the reports module roadmap, it's...