This bit of code
function age($date){
$year_diff = '';
$time = strtotime($date);
if(FALSE === $time){
return '';
}
$date = date('Y-m-d', $time);
list($year,$month,$day) = explode("-",$date);
$year_diff = date("Y") – $year;
$month_diff = date("m") – $month;
$day_diff = date("d") – $day;
if ($day_diff < 0 || $month_diff < 0) $year_diff–;
return $year_diff;
}
worked OK but now my server log states an error in the line
$year_diff = date("Y") – $year;
and dreamweaver flags that line and the following two lines as errors. Can anyone see why?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- iconMatrix@SteveAquila

iconMatrix - 0 likes
- JoDeJo@joanne

JoDeJo - 0 likes
- DhrupDeScoop@Dhrup2000

DhrupDeScoop - 0 likes
- iconMatrix@SteveAquila

iconMatrix - 0 likes
You must log in to post replies.I removed your - operator in dreamweaver and white space then re-installed it and the error went away
$year_diff = date("Y")-$year;
@iconMatrix - Thanks that worked a treat... weird how that happened.
–
in NOT a
-
You are welcome it looks like it was code for a ndash written – You can read more about it here