Ticket #1147: forum_rss.inc.patch

File forum_rss.inc.patch, 535 bytes (added by teleyinex, 13 years ago)

Patch to fix an RSS SQL error

  • forum_rss.inc

     
    6666    if ($threads_only) {
    6767        $q = "$clause and hidden=0 and create_time > $tlimit order by create_time desc";
    6868    } else {
    69         $q = "$clause and hidden=0 and and timestamp > $tlimit order by timestamp desc";
     69        $q = "$clause and hidden=0 and timestamp > $tlimit order by timestamp desc";
    7070    }
    7171
    7272    $threads = BoincThread::enum($q);