Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #43316, comment 73


Ignore:
Timestamp:
04/06/2018 03:55:59 PM (6 years ago)
Author:
azaozz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #43316, comment 73

    initial v1  
    1 Looking at 43316.13.diff, it introduces quite a few inconsistencies. It kind of treats autosaves as different post_type, but still keeps them as revisions. It also moves all auto-saving logic to the client and requires the client to manipulate the data to be able to save. There are also few regressions compared with the current logic.
     1Looking at 43316.13.diff, it introduces quite a few inconsistencies. It kind of treats autosaves as different post_type, but still keeps them as revisions. It also moves all auto-saving logic to the client and requires the client to manipulate the data to be able to save. There are also few regressions when comparing with the current logic.
    22
    331. The client cannot do `autoSavePost( postContent )` the same way it does `savePost( postContent )`. There are quite a few differences in the data. This is a departure from the post saving logic that may be seen as a regression.