[ticket/217] Handle incorrect values in the news URL

The news module was actually comparing the id of the selected news
with the maximum allowed length of a news article.

B3P-217
This commit is contained in:
Marc Alexander
2012-12-08 01:44:03 +01:00
parent 025421ff94
commit fb84ff92ae

View File

@@ -52,7 +52,7 @@ class portal_news_module
global $config, $template, $db, $user, $auth, $cache, $phpEx, $phpbb_root_path;
$news = request_var('news', -1);
$news = ($news > $config['board3_news_length_' . $module_id] -1) ? -1 : $news;
$news = ($news > $config['board3_number_of_news_' . $module_id] -1) ? -1 : $news;
$user->add_lang('viewforum');
$start = request_var('np', 0);
$start = ($start < 0) ? 0 : $start;