The RSS feed I'm getting gives the time in UTC while my wiki is America/New_York. This extension doesn't want to change it to America/New_York.
My LocalSettings.php has:
$wgLocaltimezone = 'America/New_York';
date_default_timezone_set( $wgLocaltimezone );
$wgLocalTZoffset = date('Z') / 60;
Removing either of the last two lines seems to do nothing to fix this. phpinfo.php reports America/New_York as the time zone.
So, why does RSS display in UTC instead of America/New_York?
Thank you for your help in this matter.