Changeset 1744

Show
Ignore:
Timestamp:
07/16/07 20:43:31 (17 months ago)
Author:
mbonetti
Message:

Fix for [487] - do not export deprecated feeds

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/opml.php

    r1561 r1744  
    137137      ." c.id, c.title, c.url, c.siteurl, d.name, c.parent, c.descr " 
    138138      ." from ". getTable("channels") . " c " 
    139       ." inner join " . getTable("folders") ." d on d.id = c.parent "; 
     139      ." inner join " . getTable("folders") ." d on d.id = c.parent " 
     140      ." where not (c.mode & ".  RSS_MODE_DELETED_STATE .") "; 
    140141       
    141142    if (hidePrivate()) { 
    142         $sql .=" where not(c.mode & " . RSS_MODE_PRIVATE_STATE .") ";          
     143        $sql .=" and not(c.mode & " . RSS_MODE_PRIVATE_STATE .") ";        
    143144    } 
    144145