get_the_time returns incorrect times, gmt when non-gmt is needed. I just noticed this testing 3.0RC2, maybe earlier test releases are affected too.
QT: add_filter('get_the_time','qtrans_timeFromPostForCurrentLanguage',0,3);
That filter has no way of working corretly:
WP: return apply_filters('get_the_time', $the_time, $d, $post);
QT: function qtrans_timeFromPostForCurrentLanguage($old_date, $format = '', $gmt = false) {
Again I suggest optimizing the filters so that they are not run multiple times:
- remove the_time
- remove get_the_time
- add get_post_time
And there are a LOT of similar double or triple filtering issues.
