From 916cb4c997d82e95fee1cfe17faa2cbe50cd60da Mon Sep 17 00:00:00 2001 From: Pashe Date: Sat, 3 Jan 2015 23:34:27 -0600 Subject: [PATCH] inc/functions.php: Tabs in code tags (fixes #328) --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index d2417f74..2d5da1f6 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -1964,7 +1964,7 @@ function markup(&$body, $track_cites = false, $op = false) { } // replace tabs with 8 spaces - $body = str_replace("\t", ' ', $body); + $body = str_replace("\t", ' ', $body); return $tracked_cites; }