Well, I have just upgraded my blog to WordPress' latest version and the process was smooth. I also designed a theme myself a few weeks ago and it was working pretty well.
However, I show the time of my articles in a different way in order to correctly follow the Portuguese grammar. Here's what I have in my source code:
<?php the_time('G'); ?>h<?php the_time('i'); ?>min
The "h" stands for "hours" and the "min" stands for "minutes", obviously. The result for it was and should be "20h49min", right? According to the latest version, no.
Whenever I post a new article, I keep getting this:
1206737394h49min
The minutes are correct but the hours have been messed up pretty ugly.
So, my question is: does anyone know how to fix it?
Thank you.