Open juho-jaakkola opened 7 years ago
This is caused by trying to use formatting meant for date() funtion with strftime() which in fact uses a different set of formatting options.
date()
strftime()
$created_date = htmlspecialchars(strftime(elgg_echo("friendlytime:date_format"), $spam_login_filter_ip->time_created));
This is caused by trying to use formatting meant for
date()
funtion withstrftime()
which in fact uses a different set of formatting options.