■掲示板に戻る■ 全部 1- 101- 201- 301- 401- 501- 601- 701- 801- 901- 最新50    
レス数が1000を超えています。残念ながら全部は表示しません。

新琵琶作成委員会

653 :名無しの琵琶法師:04/09/08 00:43 ID:???
>>625 確かにバグですね
searchleft.htmlの136行目から144行目の

if(Server.split(".")[1]=="girlsonair"){
goa=1;site="GOA";S_site=0
}
if(Server.split(".")[1]=="dxlive"){
site="DX";S_site=1
}
if(Server.split(".")[1]=="exshot"){
site="EX";S_site=2
}

を以下のように修正して下さい。

if(Server.indexOf("dxlive") >= 0){
site="DX";S_site=1
}else if(Server.indexOf("exshot") >= 0){
site="EX";S_site=2
}else {
goa=1;site="GOA";S_site=0
}

以上です。


177KB