Skip to content

Commit

Permalink
Merge branch '2023.11' into 2024.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Jan 15, 2024
2 parents fd08166 + bf73e2d commit aa04c7c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tine20/Tinebase/Server/Abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ protected static function _getModelConfigMethods($frontend)
continue;
}
} catch (Exception $e) {
Tinebase_Exception::log($e);
if (! $e instanceof Tinebase_Exception_AccessDenied) {
Tinebase_Exception::log($e);
}
continue;
}

Expand Down

0 comments on commit aa04c7c

Please sign in to comment.