Skip to content

Commit

Permalink
productionビルド時にエラーメッセージが出ることがあるのを抑制
Browse files Browse the repository at this point in the history
  • Loading branch information
Masaki Yamamoto committed Feb 4, 2014
1 parent b259d2f commit 53eb058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phest/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
define('DIR_PHEST',dirname(__FILE__));
require(DIR_PHEST.'/config.php');

$ver = 'v0.9.2';
$ver = 'v0.9.3';

error_reporting(E_ALL);
ini_set('display_errors','On');
Expand Down Expand Up @@ -596,7 +596,7 @@
//ignorecomilejsオプションで、コンパイルしないjsを検証
if (!check_path_match($filepath,$config_yaml['ignorecompilejs'])){
//何か出力しないとブラウザ側でタイムアウトするので空白を出力
echo '<span></span>';flush();ob_flush();
echo '<span></span>';@flush();@ob_flush();

//コマンドラインで処理するために、一度テンポラリファイルとして書き出す
$output_to = $dir_output.'/'.$filepath;
Expand Down

0 comments on commit 53eb058

Please sign in to comment.