Changeset 1544 for trunk/gregarius/cls/update.php
- Timestamp:
- 08/24/06 01:14:02 (4 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/cls/update.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/update.php
r1516 r1544 76 76 77 77 function populate($updatePrivateAlso = false) { 78 $sql = "select c.id, c.url, c.title from ".getTable("channels") . " c, " 79 . getTable('folders') . " f "; 80 $sql .= " where not(c.mode & ".RSS_MODE_DELETED_STATE.") "; 81 $sql .= " and c.parent = f.id "; 78 $sql = "select c.id, c.url, c.title from ".getTable("channels") . " c " 79 . " inner join " . getTable('folders') . " f on f.id = c.parent " 80 . " where not(c.mode & ".RSS_MODE_DELETED_STATE.") "; 82 81 83 82 if (hidePrivate() && !$updatePrivateAlso) {
