toDate() function different behaviour

We have used toDate() function to get human readable date from epoch. It was working as we expected till we updated our Ignition installation from 7.5.5 to 7.5.8 (b1410). Now it returns different results depending on PC the client is launched on.

Old behaviour: result like “12.06.2013 10:40:37”
New behaviour: result like “Jun 12, 2013 10:40:37 AM”

What does it depend on? Local timezone? It seems, that it is not, since current timezone has 24H clock setting, not AM/PM. On some PCs it is still working the old way. The old way suits our needs better.

Any ideas?
Thank you!

Try manuly format like:

dateFormat(toDate(now()),"dd.MM.yyyy HH:mm:ss")

It worked! Thank you!