Changeset 1544 for trunk/gregarius/index.php
- Timestamp:
- 08/24/06 01:14:02 (4 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/index.php
r1424 r1544 171 171 $sql = "select " 172 172 ." c.id" 173 ." from " 174 .getTable("channels") . " c, " 175 .getTable("folders") ." f " 176 ." where c.parent = f.id "; 173 ." from " . getTable("channels") . " c " 174 ." inner join " . getTable("folders") ." f on f.id = c.parent "; 177 175 178 176 // $sql .= $sqlWhereHidden; 179 177 180 $sql .= " andnot(c.mode & " . RSS_MODE_DELETED_STATE .") ";178 $sql .= " where not(c.mode & " . RSS_MODE_DELETED_STATE .") "; 181 179 182 180 if (getConfig('rss.config.absoluteordering')) {
