diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-07-03 17:16:28 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-07-03 17:16:28 +0200 |
commit | 60b4d5132f2023ade224676a6729b5f0847c4110 (patch) | |
tree | fee6a7f3c9391c64d8e37960fe94ac6206c51817 /phpBB | |
parent | 2be39c5a8f3b587f2fe091862e7021ae70d9fcda (diff) | |
parent | 18a08e1af17ff3622312324f5ddca66b79b30e98 (diff) | |
download | forums-60b4d5132f2023ade224676a6729b5f0847c4110.tar forums-60b4d5132f2023ade224676a6729b5f0847c4110.tar.gz forums-60b4d5132f2023ade224676a6729b5f0847c4110.tar.bz2 forums-60b4d5132f2023ade224676a6729b5f0847c4110.tar.xz forums-60b4d5132f2023ade224676a6729b5f0847c4110.zip |
Merge pull request #3734 from RMcGirr83/ticket/13759
[ticket/13759] Initial commit broke timestamps when quoting a post.
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/posting.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index d994811a91..4f901c1d94 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1330,7 +1330,6 @@ if ($submit || $preview || $refresh) 'enable_urls' => (bool) $post_data['enable_urls'], 'enable_indexing' => (bool) $post_data['enable_indexing'], 'message_md5' => (string) $message_md5, - 'post_time' => (isset($post_data['post_time'])) ? (int) $post_data['post_time'] : $current_time, 'post_checksum' => (isset($post_data['post_checksum'])) ? (string) $post_data['post_checksum'] : '', 'post_edit_reason' => $post_data['post_edit_reason'], 'post_edit_user' => ($mode == 'edit') ? $user->data['user_id'] : ((isset($post_data['post_edit_user'])) ? (int) $post_data['post_edit_user'] : 0), |