23
I have the same problem in 2.5.4. The solution mentioned in this thread works fine.
However, when I look in the revised version on SourceForge.net using Trabis' link, the following code has not been removed in post.php (line 82):
// If the date format is wrong
if (
!preg_match('`[0-9]{4}-[01][0-9]-[0123][0-9]`', $_POST['event_start']['date'])
|| !preg_match('`[0-9]{4}-[01][0-9]-[0123][0-9]`', $_POST['event_end']['date'])
) {
redirect_header(
'index.php', 3, _MD_EXTCAL_WRONG_DATE_FORMAT . "
"
. implode('
', $GLOBALS['xoopsSecurity']->getErrors())
);
exit;
}
Should it still be removed or not ?
Thanks !
SMEDrieben