Invalid send date
Brought to you by:
corbyboy
A message "invalid send date" appears in the preview window if the user cannot send cards in the future (disabled in config).
Solution : index.php, line 898 changed into
if(($_POST['when_send'] == "" || !isset($_POST['when_send'])) && $conf['delay_send'] == "y")
The check on the send date must only be done if it has been enabled in the config.
Please include this bugfix in the next release please.
Thanks,
Logged In: NO
Another issue with this : the e-card is not send anyway and is scheduled for later. We must not test "when_send" if it has not been enabled.
Another solution would be to initialize correctly the variable "when_send" with "now" or "later". Actually, it is empty.