Configurable post time format
This commit is contained in:
parent
d46c40652c
commit
9ba2638ad7
@ -220,6 +220,10 @@
|
|||||||
define('BUTTON_NEWTOPIC', 'New Topic', true);
|
define('BUTTON_NEWTOPIC', 'New Topic', true);
|
||||||
define('BUTTON_REPLY', 'New Reply', true);
|
define('BUTTON_REPLY', 'New Reply', true);
|
||||||
|
|
||||||
|
// The string passed to date() for post times
|
||||||
|
// http://php.net/manual/en/function.date.php
|
||||||
|
define('POST_DATE', 'm/d/y (D) H:i:s', true);
|
||||||
|
|
||||||
define('ALWAYS_NOKO', false, true);
|
define('ALWAYS_NOKO', false, true);
|
||||||
|
|
||||||
define('URL_MATCH', '/^' .
|
define('URL_MATCH', '/^' .
|
||||||
|
@ -128,7 +128,7 @@
|
|||||||
$built .= '</a>';
|
$built .= '</a>';
|
||||||
|
|
||||||
// Date/time
|
// Date/time
|
||||||
$built .= ' ' . date('m/d/y (D) H:i:s', $this->time);
|
$built .= ' ' . date(POST_DATE, $this->time);
|
||||||
|
|
||||||
$built .= ' <a class="post_no"' .
|
$built .= ' <a class="post_no"' .
|
||||||
// JavaScript highlight
|
// JavaScript highlight
|
||||||
@ -271,7 +271,7 @@
|
|||||||
$built .= '</a>';
|
$built .= '</a>';
|
||||||
|
|
||||||
// Date/time
|
// Date/time
|
||||||
$built .= ' ' . date('m/d/y (D) H:i:s', $this->time);
|
$built .= ' ' . date(POST_DATE, $this->time);
|
||||||
|
|
||||||
$built .= ' <a class="post_no"' .
|
$built .= ' <a class="post_no"' .
|
||||||
// JavaScript highlight
|
// JavaScript highlight
|
||||||
|
Loading…
Reference in New Issue
Block a user