razor7894 Posted February 21, 2016 Share Posted February 21, 2016 Здравствуйте, знатоки :)Интересует такой вопрос, как изменить дату и время публикации сообщения. Например:"текст сообщения" 11.11.2016 17:24 . А мне допустим нужно 11.10.2016 11:00 .Заранее благодарю Link to comment Share on other sites More sharing options...
siv1987 Posted February 21, 2016 Share Posted February 21, 2016 Средствами форума такой возможности не предусмотрено.Можно изменить sql запросом: UPDATE ibf_posts p LEFT JOIN ibf_topics t1 ON (t1.tid=p.topic_id AND t1.topic_firstpost=p.pid) LEFT JOIN ibf_topics t2 ON (t2.tid=p.topic_id AND t2.last_post=p.post_date) SET p.post_date = UNIX_TIMESTAMP('2015-12-31 12:00'), t1.start_date=p.post_date, t2.last_post=p.post_date WHERE p.pid = ид_сообщения Либо воспользоватся хуком для исправления времени сообщения 1 Link to comment Share on other sites More sharing options...
tunofak Posted November 4, 2018 Share Posted November 4, 2018 Для версии iPB 4UPDATE forums_posts p LEFT JOIN forums_topics t1 ON (t1.tid=p.topic_id AND t1.topic_firstpost=p.pid) LEFT JOIN forums_topics t2 ON (t2.tid=p.topic_id AND t2.last_post=p.post_date) SET p.post_date = UNIX_TIMESTAMP('2015-12-31 12:00'), t1.start_date=p.post_date, t2.last_post=p.post_date WHERE p.pid = id поста. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now