Opened 17 years ago
Closed 17 years ago
#5774 closed defect (bug) (fixed)
Write:Post>Save shouldn't "Saved on: 1999-11-30 at 00:00"
Reported by: | lloydbudd | Owned by: | ryan |
---|---|---|---|
Milestone: | 2.5 | Priority: | normal |
Severity: | normal | Version: | 2.5 |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
Write:Post>Save shouldn't "Saved on: 1999-11-30 at 00:00"
ENV: WP trunk r6735 (2.4-bleeding)
Clicking Save when authoring a new post results in the phrase "Saved on: 1999-11-30 at 00:00" above the Save and Publish buttons. The time shown should be the time the post was saved.
Attachments (3)
Change History (12)
#2
in reply to:
↑ 1
@
17 years ago
- Cc ffemtcj added
- Keywords has-patch added
Replying to ryan:
For drafts we should use post_modified rather than post_date for the saved on date.
Here is a patch that fixes the problem with saving posts and pages. My only concern is that when you save a post (or page), above the save button in the light blue area it says Saved on: <date> then below the save button in the grey area it says last edited on <date>.. Because they are both date_modified, they both show up the same. Isn't this a little redundant?
#4
@
17 years ago
Yeah, I don't get the point of "Saved on" -- that'll be the same as "last modified" except for published posts "which show "published on." Why not just axe the "Saved on" text?
#5
@
17 years ago
The design mockups have it saying "Saved by Joe User on xxx", but we don't store the last user who modified the post anywhere. It's meant to let people know if someone else is editing the post and when they did it. Perhaps we could save the ID of the last person to edit in postmeta.
#6
@
17 years ago
2nd patch added to fix Future posts.
Future posts set post_date to a future date, while still being a draft, So WordPress cannot make its decisions based on a null time, only the status of the post. See #5755 which is another symptom of this display issue i believe.
Re: Saved on
I personally feel "Last Modified" should be shown in the exact same place as "Published on" on the next line IF the modified time is different from the post time. They're equal data, and theres no reason why the last modified should be hidden below it.
I also think the Autosave should be modified to update the same fields/locations, but i think that might be coming in more of the redesign anyway.
#7
@
17 years ago
I don't think anyone is working on updating the fields with autosave, but that's something I've been wanting. Showing the Preview button after autosaving a new post might be nice too. Hopefully the button popping out of nowhere wouldn't be too visually jarring.
For drafts we should use post_modified rather than post_date for the saved on date.