plegall / Piwigo-no_stats_for_robots

0 stars 3 forks source link

create_function deprecated in PHP7.2 #2

Closed Hood-fr closed 4 years ago

Hood-fr commented 5 years ago
if (isset($_SERVER["HTTP_USER_AGENT"])
    and preg_match('/('.implode('|', $bots).')/', $_SERVER['HTTP_USER_AGENT']))
{
  add_event_handler('pwg_log_allowed', **create_function**('', 'return false;'));
  add_event_handler('allow_increment_element_hit_count', **create_function**('$b', 'return false;'));
}
?>

create_function is deprecated in PHP7.2