diff --git a/classes/PublishPress/Permissions/PostSave.php b/classes/PublishPress/Permissions/PostSave.php index 00405d5e..62efe74f 100644 --- a/classes/PublishPress/Permissions/PostSave.php +++ b/classes/PublishPress/Permissions/PostSave.php @@ -45,15 +45,6 @@ public static function actSaveItem($item_source, $post_id, $post) return; } - global $current_user; - $transient_name = "_saving_post_{$post_id}_{$current_user->ID}"; - - if (get_transient($transient_name)) { - return; - } else { - set_transient($transient_name, true, 5); - } - $saved_items[$post_id] = 1; $is_new = self::isNewPost($post_id, $post);