Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fatal error for Post_Meta hook return type #39

Open
wants to merge 2 commits into
base: v2.0
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions inc/post-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,11 @@ function update_schedule( int $meta_id, int $object_id, string $meta_key, $meta_
* @param int[] $meta_ids An array of deleted metadata entry IDs.
* @param int $object_id Object ID.
* @param string $meta_key Meta key.
*
* @return bool
*/
function remove_schedule( array $meta_ids, int $object_id, string $meta_key ) : bool {
function remove_schedule( array $meta_ids, int $object_id, string $meta_key ) : void {
if ( $meta_key === Unpublish\POST_META_KEY ) {
return Unpublish\unschedule_unpublish( $object_id );
Unpublish\unschedule_unpublish( $object_id );
}

return false;
}

/**
Expand Down