if ($result && ((JRequest::getCmd('option') != 'com_content') || (JRequest::getCmd('view') != 'article') || ((JRequest::getInt('id') != 'XXX') || (JRequest::getInt('id') != 'YYY') || (JRequest::getInt('id') != 'ZZZ'))))
{if ($result &&
!(
(JRequest::getCmd('option') == 'com_content') && (JRequest::getCmd('view') == 'article') &&
((JRequest::getInt('id') == 'XXX') || (JRequest::getInt('id') == 'YYY') || (JRequest::getInt('id') == 'ZZZ')
)
)
)//Get the article's ID
$articleId = (JRequest::getVar('option')==='com_content' && JRequest::getVar('view')==='article')? JRequest::getInt('id') : 0;
//ID's of the excluded articles
$dont_redirect = array('XXX','YYY','ZZZ');
if($result && !in_array($articleId , $dont_redirect))
{...Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
