use rawMarkdown method to set page content

This commit is contained in:
Gert
2015-05-13 18:53:15 +02:00
parent e31105a4f0
commit 09be9be945

View File

@@ -1008,7 +1008,7 @@ class AdminController
} }
// Fill content last because of it also renders the output. // Fill content last because of it also renders the output.
if (isset($input['content'])) { if (isset($input['content'])) {
$page->content((string) $input['content']); $page->rawMarkdown((string) $input['content']);
} }
} }