• Bug in subject line of notification profiles.

    By Chris Jones 2 decades ago

    Just spotted a bug. You can't actually have a custom subject for your Notification profiles, as the code in NotificationFunctions library, specifically the NotificationProfile class' Sub New() method references the Subject field when it should be the NotifySubject field.



    Line 39:

    subject = doc.Subject(0)



    Should be:

    subject = doc.NotifySubject(0)