diff options
| author | tmu <tmu> | 2003-12-25 10:28:07 +0000 |
|---|---|---|
| committer | tmu <tmu> | 2003-12-25 10:28:07 +0000 |
| commit | 66092dae7a7fe2d11a226eb5f596979f3902e437 (patch) | |
| tree | a76ee95f77855a2d71e47eee45dfce58600b3c52 | |
| parent | 3f16e20020bece5fbd22327d2cdf6c563367805b (diff) | |
| download | fml8-66092dae7a7fe2d11a226eb5f596979f3902e437.tar.gz fml8-66092dae7a7fe2d11a226eb5f596979f3902e437.tar.bz2 fml8-66092dae7a7fe2d11a226eb5f596979f3902e437.zip | |
bugfix default $use_address_mask and $address_mask_type in thread_db_args()
| -rw-r--r-- | fml/lib/FML/Process/Utils.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm index 5b2d40a8..1aeaf6d5 100644 --- a/fml/lib/FML/Process/Utils.pm +++ b/fml/lib/FML/Process/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.95 2003/12/06 04:48:22 fukachan Exp $ +# $FML: Utils.pm,v 1.96 2003/12/24 14:23:36 fukachan Exp $ # package FML::Process::Utils; @@ -1546,8 +1546,8 @@ sub thread_db_args my $cur_lang = $curproc->language_of_html_file(); # whether we should mask address? - my $use_address_mask = 'yes'; - my $address_mask_type = 'all'; + my $use_address_mask = 'no'; + my $address_mask_type = ''; if ($config->yes('use_html_archive_address_mask')) { $use_address_mask = 'yes'; $address_mask_type |
