どどんとふ修正

リダイレクト処理に構文エラーが有ったため、index.php 15行目を修正。


//ブラウザ取得
$array_agent = array("MSIE","Chrome","Firefox");
$h_agent = $_SERVER['HTTP_USER_AGENT'];
$agent;
for($i=0; $i<2; $i++){
 if(strlen(strpos($h_agent,$array_agent[$i]))>0){
  $agent = $array_agent[$i];
  break;
 }
}
//Chromeはindex.html、それ以外をswf
-  if ($agent == "Chrome") {
+  if (isset($agent) and $agent == "Chrome") {
   header('Location: http://dona.dip.jp/trpg/index.html');
    exit;
  } else {
    header('Location: http://dona.dip.jp/trpg/DodontoF.swf');
    exit;
  } 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください