• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Fixed InvalidArgumentException: Class XenAddons\RMS\Permission\CategoryList does not match formatter pattern %s\%s\View\%s

Ah ha! Found the little bugger and squashed it! (was a \ instead of a : ) Thought I had fixed all of these, missed RMS and EMS for some reason.

Currently (in RMS 2.3.0 and older):
$plugin->setFormatters('XenAddons\RMS\Permission\Category%s', 'xa_rms_permission_category_%s');

Fixed in RMS 2.3.1:
$plugin->setFormatters('XenAddons\RMS:Permission\Category%s', 'xa_rms_permission_category_%s');

Note: This error does not affect the setting of category permissions, it just logs an error when viewing the permissions category list in the admin CP.
 
Back
Top