1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 16:00:22 +01:00

$config['always_regenerate_markup']

This commit is contained in:
Michael Foster 2013-08-29 15:29:04 +10:00
parent 2d4143c676
commit cae63cf65e

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