Change (UTC) to -0000 in reply header.
This commit is contained in:
parent
c21a79eb89
commit
cc75b78096
|
@ -315,19 +315,19 @@ if ($type == "reply") {
|
||||||
}
|
}
|
||||||
switch($OVERRIDES['quote_head']) {
|
switch($OVERRIDES['quote_head']) {
|
||||||
case 'date_name':
|
case 'date_name':
|
||||||
$bodyzeile = "On " . date("D, j M Y G:i:s (T),", $head->date) . " " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
$bodyzeile = "On " . date("D, j M Y G:i:s O,", $head->date) . " " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
||||||
break;
|
break;
|
||||||
case 'msgid_name':
|
case 'msgid_name':
|
||||||
$bodyzeile = "In " . $head->id . ", " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
$bodyzeile = "In " . $head->id . ", " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
||||||
break;
|
break;
|
||||||
case 'date_msgid_name':
|
case 'date_msgid_name':
|
||||||
$bodyzeile = "On " . date("D, j M Y G:i:s (T),", $head->date) . " in " . $head->id . ", " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
$bodyzeile = "On " . date("D, j M Y G:i:s O,", $head->date) . " in " . $head->id . ", " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
||||||
break;
|
break;
|
||||||
case 'name':
|
case 'name':
|
||||||
$bodyzeile = $text_post["wrote_prefix"] . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
$bodyzeile = $text_post["wrote_prefix"] . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$bodyzeile = "On " . date("D, j M Y G:i:s (T),", $head->date) . " " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
$bodyzeile = "On " . date("D, j M Y G:i:s O,", $head->date) . " " . $bodyzeile . $text_post["wrote_suffix"] . "\n\n";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue