summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-10-16 14:06:57 +0000
committerfukachan <fukachan>2003-10-16 14:06:57 +0000
commitec40e3d396de670d1758069cfffcee33e8f19379 (patch)
tree26f52b75bc3075bd7d3ee6dc4e57feabc97a625a /fml/lib/FML/Process
parentd69a3767f1c850e712bd1f18516a9cfa8af046cb (diff)
downloadfml8-ec40e3d396de670d1758069cfffcee33e8f19379.tar.gz
fml8-ec40e3d396de670d1758069cfffcee33e8f19379.tar.bz2
fml8-ec40e3d396de670d1758069cfffcee33e8f19379.zip
cgi_var_language() returns '' not 'japanese' if language info not found.
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/CGI/Utils.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/CGI/Utils.pm b/fml/lib/FML/Process/CGI/Utils.pm
index 85e9385f..87e520af 100644
--- a/fml/lib/FML/Process/CGI/Utils.pm
+++ b/fml/lib/FML/Process/CGI/Utils.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: Utils.pm,v 1.5 2003/10/15 01:03:36 fukachan Exp $
+# $FML: Utils.pm,v 1.6 2003/10/15 10:12:13 fukachan Exp $
#
package FML::Process::CGI::Utils;
@@ -196,7 +196,7 @@ sub cgi_var_language
return lc($lang);
}
else {
- return 'japanese';
+ return '';
}
}