Fix \t in posts (editing posts, and HTML Tidy)

This commit is contained in:
Michael Foster 2013-08-31 13:23:29 +10:00
parent f1b1d41230
commit d166fc70bd
2 changed files with 6 additions and 4 deletions

View file

@ -1580,9 +1580,6 @@ function markup(&$body, $track_cites = false) {
}
}
// replace tabs with 8 spaces
$body = str_replace("\t", ' ', $body);
$tracked_cites = array();
// Cites
@ -1748,6 +1745,7 @@ function markup(&$body, $track_cites = false) {
if ($config['markup_repair_tidy']) {
$tidy = new tidy();
$body = str_replace("\t", '	', $body);
$body = $tidy->repairString($body, array(
'doctype' => 'omit',
'bare' => true,
@ -1759,10 +1757,12 @@ function markup(&$body, $track_cites = false) {
'output-html' => true,
'newline' => 'LF',
'quiet' => true,
), 'utf8');
$body = str_replace("\n", '', $body);
}
// replace tabs with 8 spaces
$body = str_replace("\t", ' ', $body);
return $tracked_cites;
}