Include autosave type

This commit is contained in:
Diego Najar 2019-05-26 23:09:38 +02:00
parent ff4f166962
commit bcff43603a
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ function buildThePage() {
return false; return false;
} }
if ($page->draft() || $page->scheduled()) { if ($page->draft() || $page->scheduled() || $page->autosave()) {
if ($url->parameter('preview')!==md5($page->uuid())) { if ($url->parameter('preview')!==md5($page->uuid())) {
$url->setNotFound(); $url->setNotFound();
return false; return false;
@ -329,11 +329,11 @@ function editPage($args) {
global $pages; global $pages;
global $syslog; global $syslog;
// Check if the autosave page exists for this new page and delete it // Check if the autosave/preview page exists for this new page and delete it
if (isset($args['uuid'])) { if (isset($args['uuid'])) {
$autosaveKey = $pages->getByUUID('autosave-'.$args['uuid']); $autosaveKey = $pages->getByUUID('autosave-'.$args['uuid']);
if ($autosaveKey) { if ($autosaveKey) {
Log::set('Function editPage()'.LOG_SEP.'Autosave deleted for '.$autosaveKey, LOG_TYPE_INFO); Log::set('Function editPage()'.LOG_SEP.'Autosave/Preview deleted for '.$autosaveKey, LOG_TYPE_INFO);
deletePage($autosaveKey); deletePage($autosaveKey);
} }
} }