Index: codefilter.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/codefilter/codefilter.module,v retrieving revision 1.11 diff -u -r1.11 codefilter.module --- codefilter.module 23 Apr 2005 02:39:02 -0000 1.11 +++ codefilter.module 11 Aug 2005 20:44:01 -0000 @@ -84,7 +85,8 @@ } function codefilter_fix_indent($text) { - return str_replace(' ', ' ', $text[0]); + $text = str_replace(' ', ' ', $text[0]); + return $text; } function codefilter_escape($text) {