Markup modifiers: raw HTML

This commit is contained in:
Michael Foster 2013-07-31 19:18:55 -04:00
parent 6d52c8b428
commit 6bbe407e18
2 changed files with 39 additions and 33 deletions

View file

@ -379,6 +379,10 @@ if (isset($_POST['delete'])) {
wordfilters($post['body']);
$post['body'] = escape_markup_modifiers($post['body']);
if ($mod && isset($post['raw']) && $post['raw']) {
$post['body'] = '<tinyboard raw html>' . $post['body'] . '</tinyboard>';
}
if (mysql_version() >= 50503) {
$post['body_nomarkup'] = $post['body']; // Assume we're using the utf8mb4 charset
} else {
@ -396,8 +400,7 @@ if (isset($_POST['delete'])) {
}
}
if (!($mod && isset($post['raw']) && $post['raw']))
$post['tracked_cites'] = markup($post['body'], true);
$post['tracked_cites'] = markup($post['body'], true);
// Check for a flood
if (!hasPermission($config['mod']['flood'], $board['uri']) && checkFlood($post)) {