Fix page saving using html instead of raw input

This commit is contained in:
Matias Griese
2014-09-19 19:36:13 +03:00
parent cccd084a55
commit 0ab39a9b85

View File

@@ -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();
}
}