チェンジセット 83: trunk/install/php/showplaylist.php
- コミット日時:
- 2008/12/30 22:12:46 (16 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/showplaylist.php
r70 r83 14 14 省略時、録画順にソートされる。 15 15 titleのときに、番組順ソートされる。 16 rawのときに、DBに記録されている番組録画情報ではなくディレクトリにあるm2p ファイルを全て表示する。16 rawのときに、DBに記録されている番組録画情報ではなくディレクトリにあるm2p/m2tファイルを全て表示する。 17 17 18 18 DCC-JPL Japan/foltia project … … 97 97 //旧仕様 98 98 if($list == "raw"){ 99 exec ("ls -t $recfolderpath/*.m2 p", $m2pfiles);99 exec ("ls -t $recfolderpath/*.m2?", $m2pfiles); 100 100 101 101 … … 106 106 107 107 if(($fName == ".") or ($fName == "..") ){ continue; } 108 if (ereg(".m2 p", $fName)){108 if (ereg(".m2.+", $fName)){ 109 109 $filesplit = split("-",$fName); 110 110 … … 230 230 } 231 231 if (file_exists("./selectcaptureimage.php") ) { 232 $capimgpath = preg_replace("/.m2 p/", "", $fName);232 $capimgpath = preg_replace("/.m2.+/", "", $fName); 233 233 print " <td align=\"left\"><a href=\"./selectcaptureimage.php?pid=$pid\">キャプ</a></td>\n"; 234 234 }