diff options
Diffstat (limited to 'mod')
| -rw-r--r-- | mod/blog/actions/blog/auto_save_revision.php | 2 | ||||
| -rw-r--r-- | mod/blog/actions/blog/save.php | 4 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/mod/blog/actions/blog/auto_save_revision.php b/mod/blog/actions/blog/auto_save_revision.php index 1acf3b31b..66b65c5fd 100644 --- a/mod/blog/actions/blog/auto_save_revision.php +++ b/mod/blog/actions/blog/auto_save_revision.php @@ -63,7 +63,7 @@ if ($title && $description) {  		if (!$auto_save) {  			$annotation_id = $blog->annotate('blog_auto_save', $description);  		} elseif ($auto_save instanceof ElggAnnotation && $auto_save->value != $description) { -			$blog->clearAnnotations('blog_auto_save'); +			$blog->deleteAnnotations('blog_auto_save');  			$annotation_id = $blog->annotate('blog_auto_save', $description);  		} elseif ($auto_save instanceof ElggAnnotation && $auto_save->value == $description) {  			// this isn't an error because we have an up to date annotation. diff --git a/mod/blog/actions/blog/save.php b/mod/blog/actions/blog/save.php index 8be67ec6c..8ca8ce846 100644 --- a/mod/blog/actions/blog/save.php +++ b/mod/blog/actions/blog/save.php @@ -131,10 +131,10 @@ if (!$error) {  		elgg_clear_sticky_form('blog');  		// remove autosave draft if exists -		$blog->clearAnnotations('blog_auto_save'); +		$blog->deleteAnnotations('blog_auto_save');  		// no longer a brand new post. -		$blog->clearMetadata('new_post'); +		$blog->deleteMetadata('new_post');  		// if this was an edit, create a revision annotation  		if (!$new_post && $revision_text) { | 
