Summary:
PHP notice logged when news url called without articleid
Detailed Description:
When a url from the news module is called without the cntnt01articleid
parameter, the following PHP notice is generated:
[25-Mar-2017 01:00:59 Europe/London] PHP Notice: Undefined index: articleid in
/var/sites/m/m.co.uk/public_html/modules/News/action.detail.php on line 58
Line 58 does not check to see if the articleid parameter is available before
using it:
if( !$article ) {
throw new CmsError404Exception('Article '.(int)$params['articleid'].'
not found, or otherwise unavailable');
return;
}