Subj : Re: possible datestr() bug in a47
To : Clive Reuben
From : g00r00
Date : Tue Jan 11 2022 11:39 am
CR> This is actually just from the 'bulls' mod for bulletins that's floating
CR> around:
CR>
CR> if UserLastOn <= GetFileDate(Entry.Bullfile) then S:='[NEW]'
CR> if UserLastOn > GetFileDate(Entry.Bullfile) then S:=' '
CR>
CR> I'm just putting the DateStr() around the UserLastOn to see why it's not
CR> working... I am running Mystic on linux/rpi... is there something I need
CR> to configure? Thanks, for your help!
UserLastOn is a Unix format date and DateStr is for DOS format dates. You could convert it from a Unix DOS though using the DateU2D conversion function:
DateStr(DateU2D(UserLastOn)...
... If you choose not to decide, you still have made a choice