check if autosave exists

This commit is contained in:
Diego Najar 2019-02-25 16:32:00 +01:00
parent f59f55f5d4
commit 6b1020f0c4
1 changed files with 5 additions and 5 deletions

View File

@ -325,10 +325,10 @@ function editPage($args) {
// Check if the autosave page exists for this new page and delete it
if (isset($args['uuid'])) {
$pageKey = $pages->getByUUID('autosave-'.$args['uuid']);
if (!empty($pageKey)) {
Log::set('Function editPage()'.LOG_SEP.'Autosave deleted for '.$args['title'], LOG_TYPE_INFO);
deletePage($pageKey);
$autosaveKey = $pages->getByUUID('autosave-'.$args['uuid']);
if ($autosaveKey) {
Log::set('Function editPage()'.LOG_SEP.'Autosave deleted for '.$autosaveKey, LOG_TYPE_INFO);
deletePage($autosaveKey);
}
}
@ -355,7 +355,7 @@ function editPage($args) {
// Add to syslog
$syslog->add(array(
'dictionaryKey'=>'content-edited',
'notes'=>$args['title']
'notes'=>empty($args['title'])?$key:$args['title']
));
return $key;