Tweak Suggestion

I changed line 960 in my version of AuthitemController.php as follows:




    //if ($cont instanceof SBaseController) {

    if (is_subclass_of( $cont, 'SBaseController' )) {



This allowed me to use my single Controller component class to inherit from SBaseController so I wouldn’t need to change each of my regular controllers.