LoginSignup
1
1

More than 5 years have passed since last update.

Tiny Tiny RSS(tt-rss)で時刻の差分表示を絶対時間にする

Last updated at Posted at 2016-02-28

この右上の所は設定ファイルじゃどーにも出来ないっぽい?ので直接phpを書き換え。バージョンはv15.7

imgTemp-2016-02-28-23-58-35.png

tt-rss/classes/feeds.php#623
$reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
    $updated_fmt</span>";

tt-rss/classes/feeds.php#623
$reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
    ".date("Y/m/d H:i:s",strtotime($line["updated"])+9*60*60)."</span>";

に書き換え。
UTCで入ってるのをうまく日本時間に変換出来なくて、+9時間ベタ書きなのがどーにもダサいけどどうしたもんか。ブラウザから取れないかな・・・

imgTemp-2016-02-29-00-04-59.png

全てよろし。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1