Reply to thread

Nope.  You would have to modify this code to check multiple values:


library/XenForo/Helper/Criteria.php


[code]

                // browsing within the specified view

                case 'view':

                {

                    if (!isset($params['viewName']) || strtolower($params['viewName']) != strtolower($data['name']))

                    {

                        return false;

                    }

                }

                break;


                // viewing the specified content template

                case 'template':

                {

                    if (!isset($params['contentTemplate']) || strtolower($params['contentTemplate']) != strtolower($data['name']))

                    {

                        return false;

                    }

                }

                break;

[/code]


Back
Top Bottom