From 0ab39a9b85f943dfeb14525372c81ae13bdfd623 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Fri, 19 Sep 2014 19:36:13 +0300 Subject: [PATCH] Fix page saving using html instead of raw input --- system/src/Grav/Common/Page/Page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index 64d1c3a17..e8c6076ab 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -420,7 +420,7 @@ class Page if ($file) { $file->filename($this->filePath()); $file->header((array) $this->header()); - $file->markdown($this->content()); + $file->markdown($this->raw_content); $file->save(); } }