Changeset 1759 for branches/multiuser/cls/channels.php
- Timestamp:
- 09/26/07 08:57:31 (14 months ago)
- Files:
-
- 1 modified
-
branches/multiuser/cls/channels.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/cls/channels.php
r1640 r1759 224 224 ." from " . getTable('item2user') ." i2u " 225 225 . " inner join " . getTable('channels2user') . " c2u on c2u.fkuid=" . rss_user_id() 226 . " inner join " . getTable('folders') ." f on c2u.parent=f.id" 226 . " inner join " . getTable('channels') . " c on c.id = c2u.fkcid" 227 . " inner join " . getTable('folders') ." f on c.parent=f.id" 227 228 ." where i2u.flgunread =1 " 228 229 ." and i2u.flgdeleted=0 "; … … 252 253 _pf('FeedList->populate() ...'); 253 254 $sql = "select " 254 ." c.id, c.title, c.url, c.siteurl, f.name, c 2u.parent, c2u.icon, c.descr, c2u.flgdeleted,c2u.flgprivate "255 ." c.id, c.title, c.url, c.siteurl, f.name, c.parent, c2u.icon, c.descr, c2u.flgdeleted,c2u.flgprivate " 255 256 ." from ".getTable("channels")." c " 256 257 . " inner join " . getTable("channels2user")." c2u on c2u.fkcid=c.id " … … 265 266 266 267 if (getConfig('rss.config.absoluteordering')) { 267 $sql .= " order by f.position asc, c 2u.position asc";268 $sql .= " order by f.position asc, c.position asc"; 268 269 } else { 269 270 $sql .= " order by f.name, c.title asc";
