summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-05-26 09:57:54 +0000
committerfukachan <fukachan>2005-05-26 09:57:54 +0000
commit8b58c0160dff722773e8d5564f2b43bc82c4662f (patch)
treee8b51f6d3d4b84ecdee8aba8a1dc21c3f4cab71d /fml/lib/FML/Command
parent1175e1d37092e96b0f6eb0d260f0a3a43fc8151d (diff)
downloadfml8-8b58c0160dff722773e8d5564f2b43bc82c4662f.tar.gz
fml8-8b58c0160dff722773e8d5564f2b43bc82c4662f.tar.bz2
fml8-8b58c0160dff722773e8d5564f2b43bc82c4662f.zip
$curproc->allow_reply_message() -> $curproc->is_allow_reply_message().
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/User/subscribe.pm8
-rw-r--r--fml/lib/FML/Command/User/unsubscribe.pm8
2 files changed, 8 insertions, 8 deletions
diff --git a/fml/lib/FML/Command/User/subscribe.pm b/fml/lib/FML/Command/User/subscribe.pm
index cdac9438..c2d057cd 100644
--- a/fml/lib/FML/Command/User/subscribe.pm
+++ b/fml/lib/FML/Command/User/subscribe.pm
@@ -1,10 +1,10 @@
#-*- perl -*-
#
-# Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi
+# Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: subscribe.pm,v 1.30 2004/07/06 13:36:53 fukachan Exp $
+# $FML: subscribe.pm,v 1.31 2004/07/23 15:59:04 fukachan Exp $
#
package FML::Command::User::subscribe;
@@ -95,7 +95,7 @@ sub process
# XXX extension: fml --allow-send-message or fml --allow-reply-message
unless ($cred->sender()) {
- if ($curproc->allow_reply_message()) {
+ if ($curproc->is_allow_reply_message()) {
$cred->set_sender($address);
}
}
@@ -144,7 +144,7 @@ Ken'ichi Fukamachi
=head1 COPYRIGHT
-Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi
+Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
diff --git a/fml/lib/FML/Command/User/unsubscribe.pm b/fml/lib/FML/Command/User/unsubscribe.pm
index 7695c8a9..c1b94267 100644
--- a/fml/lib/FML/Command/User/unsubscribe.pm
+++ b/fml/lib/FML/Command/User/unsubscribe.pm
@@ -1,10 +1,10 @@
#-*- perl -*-
#
-# Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi
+# Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: unsubscribe.pm,v 1.31 2004/07/06 13:36:54 fukachan Exp $
+# $FML: unsubscribe.pm,v 1.32 2004/07/23 15:59:05 fukachan Exp $
#
package FML::Command::User::unsubscribe;
@@ -94,7 +94,7 @@ sub process
# XXX extension: fml --allow-send-message or fml --allow-reply-message
unless ($cred->sender()) {
- if ($curproc->allow_reply_message()) {
+ if ($curproc->is_allow_reply_message()) {
$cred->set_sender($address);
}
}
@@ -141,7 +141,7 @@ Ken'ichi Fukamachi
=head1 COPYRIGHT
-Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi
+Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.