summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-08-11 04:11:25 +0000
committerfukachan <fukachan>2005-08-11 04:11:25 +0000
commit421645bab64a5ad2a03ba212a8ee8368640cf85f (patch)
tree75cf01f1d2ec3fa15f5b85811e287b7aca29827d /fml/lib/FML/Command
parenta177822f3ad20142924503af77545d924f070033 (diff)
downloadfml8-421645bab64a5ad2a03ba212a8ee8368640cf85f.tar.gz
fml8-421645bab64a5ad2a03ba212a8ee8368640cf85f.tar.bz2
fml8-421645bab64a5ad2a03ba212a8ee8368640cf85f.zip
FNF: article_max_id -> article_get_max_id
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/Admin/summary.pm4
-rw-r--r--fml/lib/FML/Command/Admin/thread.pm4
-rw-r--r--fml/lib/FML/Command/SendFile.pm4
3 files changed, 6 insertions, 6 deletions
diff --git a/fml/lib/FML/Command/Admin/summary.pm b/fml/lib/FML/Command/Admin/summary.pm
index 61582f16..a9d46c00 100644
--- a/fml/lib/FML/Command/Admin/summary.pm
+++ b/fml/lib/FML/Command/Admin/summary.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: summary.pm,v 1.7 2004/01/01 08:48:40 fukachan Exp $
+# $FML: summary.pm,v 1.8 2004/06/26 11:47:57 fukachan Exp $
#
package FML::Command::Admin::summary;
@@ -81,7 +81,7 @@ sub _summary
{
my ($self, $curproc, $command_args) = @_;
my $config = $curproc->config();
- my $max_id = $curproc->article_max_id();
+ my $max_id = $curproc->article_get_max_id();
my $options = $command_args->{ options } || [];
use FML::Article::Summary;
diff --git a/fml/lib/FML/Command/Admin/thread.pm b/fml/lib/FML/Command/Admin/thread.pm
index fddfd885..1e395efb 100644
--- a/fml/lib/FML/Command/Admin/thread.pm
+++ b/fml/lib/FML/Command/Admin/thread.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: thread.pm,v 1.7 2004/03/31 12:53:51 fukachan Exp $
+# $FML: thread.pm,v 1.8 2004/04/23 04:10:29 fukachan Exp $
#
package FML::Command::Admin::thread;
@@ -89,7 +89,7 @@ sub _new_switch
my $command = $options->[ 0 ] || 'one_line_summary';
my $range = $options->[ 1 ] || '';
my $default_range = 'last:10';
- my $max_id = $curproc->article_max_id();
+ my $max_id = $curproc->article_get_max_id();
my $th_args = {
last_id => $max_id,
};
diff --git a/fml/lib/FML/Command/SendFile.pm b/fml/lib/FML/Command/SendFile.pm
index 14750661..fd7e1706 100644
--- a/fml/lib/FML/Command/SendFile.pm
+++ b/fml/lib/FML/Command/SendFile.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: SendFile.pm,v 1.43 2005/06/04 08:49:07 fukachan Exp $
+# $FML: SendFile.pm,v 1.44 2005/06/04 08:51:29 fukachan Exp $
#
package FML::Command::SendFile;
@@ -152,7 +152,7 @@ sub _get_valid_article_list
use Mail::Message::MH;
my $mh = new Mail::Message::MH;
- my $last_id = $curproc->article_max_id();
+ my $last_id = $curproc->article_get_max_id();
# XXX expand() validates $fn. o.k.
# XXX we assume min_id = 1, but not correct always.