Our staff is finding the terminology "Unpublish this revision" confusing. "Unpublish" or "Unpublish this web page" would be a better wording.

Clicking the link unpublishes not just the current revision, but all versions of a node. That is, once it is clicked, an anonymous user attempting to visit the node will get not the next-to-last version of the node but rather Access Denied.

Comments

Charles Belov’s picture

Temporary workaround:

In site CSS, add the following CSS for logged-in users:

/* demistify Unpublish this revision */
.workbench-info-block a:after{
	content:' (show public "Access denied")' !important;
}

In admin CSS, add the following CSS:

/* demistify Unpublish */
body .moderation-actions a:after {
	content:' (show public "Access denied")' !important;
}
quartsize’s picture

Component: Code » User interface

Quoth our moderator:

Using the unpublish this revision worked. I thought that would just reset it to a previous version.

Charles Belov’s picture

Issue summary: View changes