# patch for scuttle-2006-07-24cvs, fixes bug #1480341 diff scuttle-2006-07-24cvs/rss.php scuttle-2006-07-24sickos/rss.php 93c93,95 < $_pubdate = date("r", strtotime($row['bDatetime'])); --- > # 2006-07-24, gopher: fixed timezone bug (db stores date in UTC) > # $_pubdate = date("r", strtotime($row['bDatetime'])); > $_pubdate = gmdate("r", strtotime($row['bDatetime'] . " +0000"));