summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-07-02 04:00:33 +0000
committerfukachan <fukachan>2002-07-02 04:00:33 +0000
commitd5468f0180ac22d6698599d2cfdf2ea3e978ec01 (patch)
tree06a41314e10da5f17d4f6e8ff373d6558fee3ccd /fml/lib/FML/Process
parentf57e831b39efbea31dfb89a34fc454e7f93fc473 (diff)
downloadfml8-d5468f0180ac22d6698599d2cfdf2ea3e978ec01.tar.gz
fml8-d5468f0180ac22d6698599d2cfdf2ea3e978ec01.tar.bz2
fml8-d5468f0180ac22d6698599d2cfdf2ea3e978ec01.zip
remove obsolete line
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/CGI/Kernel.pm15
1 files changed, 7 insertions, 8 deletions
diff --git a/fml/lib/FML/Process/CGI/Kernel.pm b/fml/lib/FML/Process/CGI/Kernel.pm
index 8a9ac1ca..07f2edfa 100644
--- a/fml/lib/FML/Process/CGI/Kernel.pm
+++ b/fml/lib/FML/Process/CGI/Kernel.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: Kernel.pm,v 1.37 2002/06/28 03:40:55 fukachan Exp $
+# $FML: Kernel.pm,v 1.38 2002/06/30 14:30:17 fukachan Exp $
#
package FML::Process::CGI::Kernel;
@@ -117,8 +117,8 @@ sub _cgi_resolve_ml_specific_variables
}
# reset
- $config->set('ml_domain', $ml_domain);
- $config->set('ml_home_prefix', $ml_home_prefix);
+ $config->set('ml_domain', $ml_domain);
+ $config->set('ml_home_prefix', $ml_home_prefix);
# speculate ml_name, which is not used in some cases.
my $ml_name = $curproc->safe_param_ml_name() || do {
@@ -378,7 +378,7 @@ sub run_cgi_title
my $role = '';
my $title = '';
- $role = "for thread view" if $myname =~ /thread/;
+ $role = "for thread view" if $myname =~ /thread/;
$role = "for configuration" if $myname =~ /config|menu/;
$title = "${ml_name}\@${domain} CGI $role";
print $title;
@@ -518,12 +518,11 @@ sub run_cgi_options
print "Language:\n";
my $langlist = [ 'Japanese', 'English' ];
- print scrolling_list(-name => 'language',
- -values => $langlist,
- -size => 1);
+ print scrolling_list(-name => 'language',
+ -values => $langlist,
+ -size => 1);
print submit(-name => 'change');
- # print reset(-name => 'reset');
print end_form;
}