-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Commit bcda7c7 seems to have introduced an error in Grommunio Web, at least when running on RHEL9. Grommunio Web will not load, simply presenting a HTTP 500 status error.
There is some discussion in the community forum although there may be several different causes of 500 errors in that post.
In my case, reverting the changes to lines 1709, 1734, and 1949 on class.baserecurrence.php in that commit solves the problem (i.e. replace $this->sortExceptionStart(...) with [$this, "sortExceptionStart"] and $this->sortStarttime(...) with [$this, "sortStarttime"]).
Unfortunately I have to re-edit the file every time I update Grommunio.
I'm not familiar enough with PHP that I'd feel comfortable submitting a PR to revert it, in case it causes a problem for people on other distros. Hopefully this is sufficient for someone more knowledgeable in that area to pick it up.