Changeset 1464

Show
Ignore:
Timestamp:
05/09/06 01:26:34 (3 years ago)
Author:
sdcosta
Message:

Fixed a bug in [1462] and added an author index.

Location:
trunk/rss
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/rss/author.php

    r1463 r1464  
    4545$sqlWhere = " i.author like '$a' "; 
    4646$numItems = getConfig('rss.output.frontpage.numitems'); 
    47 $authorItems->populate($sqlWhere, 0, $numItems); 
     47$authorItems->populate($sqlWhere, "",  0, $numItems); 
    4848$authorItems->setTitle($t); 
    4949$authorItems->setRenderOptions(IL_NO_COLLAPSE|IL_TITLE_NO_ESCAPE); 
  • trunk/rss/schema.php

    r1425 r1464  
    510510          KEY url (url), 
    511511          KEY guid(guid(10)), 
    512           KEY cid (cid) 
     512          KEY cid (cid), 
     513          KEY author (author) 
    513514        ) TYPE=MyISAM;     
    514515_SQL_