/*
* Patch for filter_var()
*/
if(!function_exists('filter_var')){
define('FILTER_VALIDATE_IP', 'ip');
define('FILTER_FLAG_IPV4', 'ipv4');
define('FILTER_FLAG_IPV6', 'ipv6');
define('FILTER_VALIDATE_EMAIL', 'email');
define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
function filter_var($variable, $filter, $option = false){
if($filter == 'ip'){
if($option == 'ipv4'){
if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
if($option == 'ipv6'){
if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
if($filter == 'email'){
if($option == 'unicode' || $option == false){
if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
}
}
Print Page - Possible new Neanderthal-Cannibalism link
Paleo Diet: Raw Paleo Diet and Lifestyle Forum
Raw Paleo Diet Forums => Science => Topic started by: TylerDurden on April 16, 2015, 12:13:01 am
http://www.dailymail.co.uk/sciencetech/article-3038816/Did-Neanderthals-EAT-dead-relatives-57-600-year-old-broken-bones-reveal-children-torn-apart-shortly-death.html (http://www.dailymail.co.uk/sciencetech/article-3038816/Did-Neanderthals-EAT-dead-relatives-57-600-year-old-broken-bones-reveal-children-torn-apart-shortly-death.html)
Cool, thanks. If this hypothesis becomes the consensus, then watch for the images of Neanderthals to shift back toward being more savage-looking. The image in the article (http://i.dailymail.co.uk/i/pix/2015/04/14/19/2791BC2200000578-3038816-image-a-17_1429035098952.jpg) already portrays them as a bit more savage-looking than the average recent images, such as this one: (http://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Neanderthals_-_Artist%27s_rendition_of_Earth_approximately_60%2C000_years_ago.jpg/220px-Neanderthals_-_Artist%27s_rendition_of_Earth_approximately_60%2C000_years_ago.jpg) http://en.wikipedia.org/wiki/Neanderthals_in_popular_culture (http://en.wikipedia.org/wiki/Neanderthals_in_popular_culture) :D
Ridiculous, really, as early modern humans have been shown to have had the same cannibalistic/burial behaviour.
Yes, and some scientists hypothesize that modern humans consumed Neanderthals.