GiacomoRz
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Bug in wp-rss*.php, handling GMT offsetStill not be changed. What the problem with the +r option of date(), instead of the “manual” way wordpress is using?
That’s just causing problems!Forum: Fixing WordPress
In reply to: Comments show up even if in mod. queueActually trackbacks too is not enabled ??
Thank you anyway for the links. I’m reading them.Forum: Requests and Feedback
In reply to: Bug in wp-rss*.php, handling GMT offsetI’ll try to explain the problem I met in a better way (sorry for my english :/).
I live in Europe (Italy), and for that reason, my clock is set 2 hours more than the GMT (1 hour is for the Dayloght saving time).I had some problems because the rss aggregator my blog was subscribed to, aggregated my posts as if they where been written 2 hours before the real date. But the blog homepage reported the correct time, so I went reading in the code, beginning from wp-rss2.php. There, I found that the “GMT offset” (+0000, +0200) part of the date reported in the feed, was static. Once I changed the date string, using the ‘r’ parameter of date() (that actually give the same output, but with the gmt offset, working directly on the date settings of the server), and everything went fine.
I’ve not check if the problem still in 1.5.1, because I patched the two files before trying it… :/Forum: Requests and Feedback
In reply to: Bug in wp-rss*.php, handling GMT offsetThis bug is still not fixed on last released 1.5.1. Who have I to write to??
Forum: Requests and Feedback
In reply to: Bug in wp-rss*.php, handling GMT offsetJust replace the string
‘D, d M Y H:i:s +0000’
in the mysql2date function with a
‘r’The same should be done with wp-rss2.php, and the change must be done twice, at lines 24 and 33
(in any case, you apply the patch with the command “patch -p0 < wp.patch” in the /directory)