При попытке репоста в ЖЖ выдается ошибка:
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 = getdate( time() );
$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'];?>
Комментарии
Делал как-то обзор этого модуля http://shaman.asiadata.ru/node/89 там есть в конце.
Правда что-то не могу кросс-пост здесь найти...
Понятно.
Не, сам решил покопаться, вроде - получилось-)))