Changeset 1548

Show
Ignore:
Timestamp:
08/27/06 22:08:34 (2 years ago)
Author:
cfriesen
Message:

Fix for #438

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/cls/categories.php

    r1544 r1548  
    118118                $sql .=" and not(unread & " . RSS_MODE_PRIVATE_STATE .") "; 
    119119            } 
    120             $sql .= " and not(c.mode & " . RSS_MODE_DELETED_STATE .") "; 
     120            $sql .= " and not(c.mode & " . RSS_MODE_DELETED_STATE .") " 
    121121            ." group by m.tid"; 
    122122            _pf('query'); 
     
    141141         ." c.id, c.title, c.url, c.siteurl, t.tag, c.parent, c.icon, c.descr, c.mode, t.id " 
    142142         ." from " . getTable('channels') ." c " 
    143          ." inner join " . getTable('metatag') ." m m.fid = c.id " 
     143         ." inner join " . getTable('metatag') ." m on m.fid = c.id " 
    144144         ." inner join " . getTable('tag') . " t on t.id = m.tid " 
    145145         ." where m.ttype = 'channel' "