*** bin/view.orig Tue May 28 14:19:36 2002 --- bin/view Tue May 28 14:19:37 2002 *************** *** 106,111 **** --- 106,112 ---- if( $topicExists ) { if( $viewRaw ) { $text = &TWiki::Store::readTopicRaw( $webName, $topic ); + $text =~ s/\t/ /go; } else { ( $meta, $text ) = &TWiki::Store::readTopic( $webName, $topic ); } *************** *** 123,128 **** --- 124,130 ---- if( $rev < $maxrev ) { if( $viewRaw ) { $text = &TWiki::Store::readTopicRaw( $webName, $topic, "1.$rev" ); + $text =~ s/\t/ /go; } else { ( $meta, $text ) = &TWiki::Store::readTopicVersion( $webName, $topic, "1.$rev" ); }