Index: /trunk/install/php/m.php =================================================================== --- /trunk/install/php/m.php (リビジョン 97) +++ /trunk/install/php/m.php (リビジョン 104) @@ -101,8 +101,11 @@ $stationvalid = sql_query($con, $query, "DBクエリに失敗しました",array($recstid)); $recstationname = $stationvalid->fetch(); - if (! $recstationname) { + if (!is_array($recstationname) || empty($recstationname)) { $errflag = 3; $errmsg = "放送局設定が異常です。"; } +}else{ + $errflag = 2; + $errmsg = "録画する局を設定してください。"; } //デジタル優先 Index: /trunk/install/php/delepgp.php =================================================================== --- /trunk/install/php/delepgp.php (リビジョン 94) +++ /trunk/install/php/delepgp.php (リビジョン 104) @@ -75,7 +75,8 @@ // $rs = m_query($con, $query, "DBクエリに失敗しました"); $rs = sql_query($con, $query, "DBクエリに失敗しました",array($pid)); -$rowdata = $rs->fetch(); -if (! $rowdate) { - die_exit("登録番組がありません
"); + $rowdata = $rs->fetch(); + + if (!is_array($rowdata) || empty($rowdata)) { + die_exit("登録番組がありません
"); }