Jake Vanderwerf
2026-05-21 46d681c6b825d21b3f698d793c4e630c687d90ad
inc/rest/RestRouteManager.php
@@ -158,11 +158,7 @@
   protected function checkContent(string $content, bool $bool = false):string|bool
   {
      $result = JVB_CONTENT[$content]??JVB_TAXONOMY[$content]??JVB_USER[$content]??'';
      if ($bool) {
         return $result !== '';
      }
      return $result;
      return (bool)Registrar::getInstance($content);
   }