summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-05-16 02:26:11 +0000
committerfukachan <fukachan>2004-05-16 02:26:11 +0000
commitdeb9bdd61ce41a68838992ef8e35eb6aa75a6eaa (patch)
treef3db352b4ce03658afa0a69d1e7a0c80e3d80e38 /fml/lib/FML/Command
parentf31f20107a0761cb2f90a82f04fc165a253e9f25 (diff)
downloadfml8-deb9bdd61ce41a68838992ef8e35eb6aa75a6eaa.tar.gz
fml8-deb9bdd61ce41a68838992ef8e35eb6aa75a6eaa.tar.bz2
fml8-deb9bdd61ce41a68838992ef8e35eb6aa75a6eaa.zip
remove is_cgi related codes.
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/Admin/list.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/fml/lib/FML/Command/Admin/list.pm b/fml/lib/FML/Command/Admin/list.pm
index ac96e2a7..1b5f040d 100644
--- a/fml/lib/FML/Command/Admin/list.pm
+++ b/fml/lib/FML/Command/Admin/list.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: list.pm,v 1.23 2004/01/02 14:45:04 fukachan Exp $
+# $FML: list.pm,v 1.24 2004/04/23 04:10:29 fukachan Exp $
#
package FML::Command::Admin::list;
@@ -63,7 +63,6 @@ sub process
if (@$x_options) { $options = $x_options;}
}
- $command_args->{ is_cgi } = 0;
$self->_show_list($curproc, $command_args, $options);
}
@@ -101,7 +100,6 @@ sub _show_list
my $uc_args = {
maplist => $maplist,
wh => \*STDOUT,
- is_cgi => $command_args->{ is_cgi },
};
my $r = '';
@@ -144,9 +142,6 @@ sub cgi_menu
my ($self, $curproc, $command_args) = @_;
my $r = '';
- # declare CGI mode.
- $command_args->{ is_cgi } = 1;
-
# navigation bar
eval q{
use FML::CGI::List;