concrete5 編集履歴の日付フォーマットが気に入らない

concrete5の編集履歴の日付のフォーマットが月/日/年に整形されているのが
個人的にいやなので修正。
<img style=”display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 194px;” src=”http://2.bp.blogspot.com/_1DT3KqJm8Ng/SxhdmLs_6vI/AAAAAAAAAAc/30yZOCyNaXo/s320/version.jpg” border=”0” alt=””id=”BLOGGER_PHOTO_ID_5411177862843591410” />

修正箇所

concrete5.3.3.1 日本語版

/concrete/tools/versions.php (386行)付近

1
echo date('m/d/Y g:i A', strtotime($v->getVersionDateCreated('user')))

定数とかConfigに設定した方がいいと思うが、とりあえず変更

1
echo date('Y年m月d日 H:i:s', strtotime($v->getVersionDateCreated('user')))

結果こんな感じ
<img style=”display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 82px;” src=”http://3.bp.blogspot.com/_1DT3KqJm8Ng/SxhemnMCOQI/AAAAAAAAAAk/i8BTfc3e6T8/s320/version2.jpg” border=”0” alt=””id=”BLOGGER_PHOTO_ID_5411178969733150978” />