Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Feed Publisher
This discussion has been closed.
Comments
In
FeedPublisher/categories_config.php
, replace every occurrence ofhref="/search.php?
withhref="'.$Configuration['BASE_URL'].'search.php?
Works for me!
Find this line and replace
while ( $DataSet = $SearchForm->Context->Database->GetRow( $SearchForm->Data ) )
with
while ( $DataSet = $SearchForm->Context->Database->GetRow( $SearchForm->Data ) and $Counter < 10)
Now in this one, replace
while ( $Row = $SearchForm->Context->Database->GetRow( $SearchForm->Data ) )
with
while ( $Row = $SearchForm->Context->Database->GetRow( $SearchForm->Data ) and $Counter < 10)
Now what I just realised today, it's that feeds of comments.php pages can be truncated too, replace this line that look like this:
while ( $Row = $CommentGrid->Context->Database->GetRow( $CommentGrid->CommentData ) ) {
with
$Counter = 0; while ( $Row = $CommentGrid->Context->Database->GetRow( $CommentGrid->CommentData ) and $Counter < 10) { $Counter++;
Those three places are respectively bound to topic search, comment search (used for category feeds too, or not, according to your categories_config.php file), and discussions.
For now, replace 10 by whatever you want, I'll create a new config item (not three new ones) later.
I guess your feedburner thing points to 'all discussions', doesn't it?
http://lussumo.com/addons/index.php?PostBackAction=AddOn&AddOnID=419