summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-11-20 22:53:26 +0000
committerDries Buytaert <dries@buytaert.net>2001-11-20 22:53:26 +0000
commit7c7b72525ba7cfd966fd70ab5deb2e5c99530d8f (patch)
treeb3460b15a1d83da9548735d6e5ce1793c2cb8f96 /modules/node.module
parent2c3409f03d5dc27a24a53187b5ecf02d4543fac6 (diff)
downloadbrdo-7c7b72525ba7cfd966fd70ab5deb2e5c99530d8f.tar.gz
brdo-7c7b72525ba7cfd966fd70ab5deb2e5c99530d8f.tar.bz2
- fixed the line filter: it should not strip v's.
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module
index e61229844..0a587fe50 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -94,7 +94,7 @@ function node_filter_line($text) {
*/
if (strstr($text, "<br />") || strstr($text, "<p>")) {
- $text = ereg_replace("[\r\n\t\v]", "", $text);
+ $text = ereg_replace("[\r\n]", "", $text);
}
/*