OSDN Git Service

fix: スターチャンネル追加
[epgrec/epgrec.git] / config.php.sample
index 052522d..1ad657c 100755 (executable)
@@ -93,6 +93,15 @@ if( file_exists( INSTALL_PATH."/settings/gr_channel.php" ) ) {
        include_once( INSTALL_PATH."/settings/gr_channel.php" );
 }
 
+//
+// settings/site_conf.phpがあればそれを優先する
+//
+if( file_exists( INSTALL_PATH."/settings/site_conf.php" ) ) {
+       unset($GR_CHANNEL_MAP);
+       unset($RECORD_MODE);
+       include_once( INSTALL_PATH."/settings/site_conf.php" );
+}
+
 
 // 全国用BSデジタルチャンネルマップ
 $BS_CHANNEL_MAP = array(
@@ -107,6 +116,7 @@ $BS_CHANNEL_MAP = array(
         "3009.ontvjapan.com" => "191",
         "3010.ontvjapan.com" => "192",
         "3011.ontvjapan.com" => "193",
+       "3012.ontvjapan.com" => "200",
         "3013.ontvjapan.com" => "211",
         "3014.ontvjapan.com" => "222",
 );
@@ -224,4 +234,4 @@ define( "CATEGORY_TBL", "categoryTbl" );                                    // カテゴリテーブル
 define( "KEYWORD_TBL", "keywordTbl" );                                         // キーワードテーブル
 // ログテーブル
 define( "LOG_TBL", "logTbl" );
-?>
\ No newline at end of file
+?>