Не идёт кросспост в ЖЖ старых записей (решено)

Главные вкладки

Аватар пользователя scild scild 20 мая 2009 в 0:52

При попытке репоста в ЖЖ выдается ошибка:

LiveJournal crossposting error: 153: Incorrect time value: You have an entry which was posted at 2009-05-18 00:00, but you're trying to post an entry before this. Please check the date and time of both entries. If the other entry is set in the future on purpose, edit that entry to use the "Date Out of Order" option. Otherwise, use the "Date Out of Order" option for this entry instead.

Date Out of Order - где и как это можно проставить? Видимо, в коде модуля... -)
Никто не сталкивался?

Решение проблемы с датой в ljxp описано тут.

В тексте модуля надо изменить строчки после

<?php  $message['subject'] = check_plain($node->title);
?>

:

должно стать:

<?php
$message
['subject'] = check_plain($node->title);
$date_time_array getdatetime() );
$message['year'] = $date_time_array['year'];
$message['mon'] = $date_time_array['mon'];
$message['day'] = $date_time_array['mday'];
$message['hour'] = $date_time_array['hours'];
$message['min'] = $date_time_array['minutes'];?>

Комментарии