Closed EarthlingDavey closed 2 days ago
There is a bug where the notify dashboard was firing a fatal php error.
This was because the plugin was not setting the text-domain correctly. This has been fixed in the upstream git repo and a patch fix in this PR.
In a defensive programming move, coauthors_filter_text has been changed so that text domain is an optional string.
coauthors_filter_text
$post?->post_type should also fix the warning Attempt to read property "post_type" on null
$post?->post_type
Attempt to read property "post_type" on null
Good shout, I've made a note in the upstream PR that this find and replace must be removed if the upstream PR is merged and released.
There is a bug where the notify dashboard was firing a fatal php error.
This was because the plugin was not setting the text-domain correctly. This has been fixed in the upstream git repo and a patch fix in this PR.
In a defensive programming move,
coauthors_filter_text
has been changed so that text domain is an optional string.$post?->post_type
should also fix the warningAttempt to read property "post_type" on null