Browse Source

Bugfix: with disabling config[markup_urls]

pull/40/head
Michael Save 12 years ago
parent
commit
ae91636d1d
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1396,10 +1396,12 @@ function markup(&$body, $track_cites = false) {
if ($config['auto_unicode']) {
$body = unicodify($body);
if ($config['markup_urls']) {
foreach ($markup_urls as &$url) {
$body = str_replace(unicodify($url), $url, $body);
}
}
}
// replace tabs with 8 spaces
$body = str_replace("\t", ' ', $body);

Loading…
Cancel
Save