Index: /trunk/doc/CHANGES.txt =================================================================== --- /trunk/doc/CHANGES.txt (リビジョン 46) +++ /trunk/doc/CHANGES.txt (リビジョン 50) @@ -1,3 +1,7 @@ foltia 更新履歴 http://www.dcc-jpl.com/soft/foltia/ + +07.4.4 +foltialib.pl: + 新規追加の放送局をデフォルトで受信不可能にするべきだったのを、不具合修正。 07.3.16 Index: /trunk/install/perl/foltialib.pl =================================================================== --- /trunk/install/perl/foltialib.pl (リビジョン 1) +++ /trunk/install/perl/foltialib.pl (リビジョン 50) @@ -153,5 +153,5 @@ ##$DBQuery = "insert into foltia_station values ('$stationid' ,'$item{ChName}','0','','','','','','')"; #新規局追加時は非受信局をデフォルトに -$DBQuery = "insert into foltia_station (stationid , stationname ,stationrecch ) values ('$stationid' ,'$item{ChName}','-1')"; +$DBQuery = "insert into foltia_station (stationid , stationname ,stationrecch ) values ('$stationid' ,'$item{ChName}','-10')"; $sth = $dbh->prepare($DBQuery);