Show
Ignore:
Timestamp:
11/25/06 08:02:19 (2 years ago)
Author:
mdodoo
Message:

Fix to get main page working again. The admin section is still inaccessible, so I will have to work on that next.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/multiuser/cls/channels.php

    r1604 r1640  
    220220            } 
    221221     
    222             //get unread count per folder                                                                         
     222            //get unread count per folder    
    223223            $sql = "select f.id, f.name, count(*) as cnt " 
    224224            ." from " . getTable('item2user') ." i2u " 
     
    230230                $sql .=" and i2u.flgprivate =0 "; 
    231231            } 
    232             $sql .= " and c2u.flgdeleted=0 "; 
     232            $sql .= " and c2u.flgdeleted=0 " 
    233233            ." group by f.id";  
    234234            _pf('query'); 
     
    255255        ." from ".getTable("channels")." c " 
    256256        . " inner join " . getTable("channels2user")." c2u on c2u.fkcid=c.id " 
    257         . " inner join " . getTable("folders") . " f.id = c.parent " 
     257        . " inner join " . getTable("folders") . " f on f.id = c.parent " 
    258258         
    259259        ." where c2u.fkuid=" . rss_user_id();