$config['always_regenerate_markup']

This commit is contained in:
Michael Foster 2013-08-29 15:29:04 +10:00
parent abd013d6e4
commit 3b63cad71f

View File

@ -316,6 +316,11 @@ class Post {
$this->modifiers = extract_modifiers($this->body_nomarkup);
if ($config['always_regenerate_markup']) {
$this->body = $this->body_nomarkup;
markup($this->body);
}
if ($this->mod)
// Fix internal links
// Very complicated regex
@ -411,6 +416,11 @@ class Thread {
$this->modifiers = extract_modifiers($this->body_nomarkup);
if ($config['always_regenerate_markup']) {
$this->body = $this->body_nomarkup;
markup($this->body);
}
if ($this->mod)
// Fix internal links
// Very complicated regex