summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Article.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-04-07 06:41:31 +0000
committerfukachan <fukachan>2001-04-07 06:41:31 +0000
commitc51a55ab388035a9846b35e9c171e3de1f2f16fd (patch)
treee179d859f4378f614b88e447b59180b723a3c9ba /fml/lib/FML/Article.pm
parent66f3f3a7a122b1940964a6b1407f0c153e38d951 (diff)
downloadfml8-c51a55ab388035a9846b35e9c171e3de1f2f16fd.tar.gz
fml8-c51a55ab388035a9846b35e9c171e3de1f2f16fd.tar.bz2
fml8-c51a55ab388035a9846b35e9c171e3de1f2f16fd.zip
print() not raw_print() message
Diffstat (limited to 'fml/lib/FML/Article.pm')
-rw-r--r--fml/lib/FML/Article.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Article.pm b/fml/lib/FML/Article.pm
index f427be19..608aa2ee 100644
--- a/fml/lib/FML/Article.pm
+++ b/fml/lib/FML/Article.pm
@@ -5,7 +5,7 @@
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $Id$
-# $FML$
+# $FML: Article.pm,v 1.19 2001/04/03 09:45:40 fukachan Exp $
#
package FML::Article;
@@ -162,7 +162,7 @@ sub spool_in
if (defined $fh) {
$curproc->{ article }->{ header }->print($fh);
print $fh "\n";
- $curproc->{ article }->{ body }->raw_print($fh);
+ $curproc->{ article }->{ body }->print($fh);
$fh->close;
Log("Article $id");
}