- Timestamp:
- 07/16/07 20:43:31 (17 months ago)
- Files:
-
- 1 modified
-
trunk/gregarius/opml.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/opml.php
r1561 r1744 137 137 ." c.id, c.title, c.url, c.siteurl, d.name, c.parent, c.descr " 138 138 ." 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 .") "; 140 141 141 142 if (hidePrivate()) { 142 $sql .=" wherenot(c.mode & " . RSS_MODE_PRIVATE_STATE .") ";143 $sql .=" and not(c.mode & " . RSS_MODE_PRIVATE_STATE .") "; 143 144 } 144 145
