forked from leftypol/leftypol
Fix \t in posts (editing posts, and HTML Tidy)
This commit is contained in:
parent
f1b1d41230
commit
d166fc70bd
2 changed files with 6 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue