mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
Use correct limit config parameter in the News feed.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10346 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
69c07b8330
commit
4e49152529
2 changed files with 2 additions and 1 deletions
|
@ -120,6 +120,7 @@
|
|||
<li>[Fix] Handle export of private messages where all recipients were deleted. (Bug #50985)</li>
|
||||
<li>[Fix] Correctly get unread status information for global announcements in search results.</li>
|
||||
<li>[Fix] Correctly handle global announcements in ATOM feeds.</li>
|
||||
<li>[Fix] Use correct limit config parameter in the News feed.</li>
|
||||
<li>[Change] Move redirect into a hidden field to avoid issues with mod_security. (Bug #54145)</li>
|
||||
<li>[Change] Log activation through inactive users ACP. (Bug #30145)</li>
|
||||
<li>[Change] Send time of last item instead of current time in ATOM Feeds. (Bug #53305)</li>
|
||||
|
|
|
@ -982,7 +982,7 @@ class phpbb_feed_news extends phpbb_feed_base
|
|||
$this->set('enable_smilies', 'enable_smilies');
|
||||
$this->set('enable_magic_url', 'enable_magic_url');
|
||||
|
||||
$this->num_items = (int) $config['feed_overall_forums_limit'];
|
||||
$this->num_items = (int) $config['feed_limit'];
|
||||
}
|
||||
|
||||
function get_sql()
|
||||
|
|
Loading…
Add table
Reference in a new issue