The archive detail doesn't work due to wrong router configuration.
$items['admin/reports/php_errors/archive/%php_errors_archive_id'] = array(
'title' => 'Archive',
'page callback' => '_php_errors_archive_view',
'page arguments' => array('php_errors_archive_id', 4),
'access arguments' => array('administer site configuration'),
'type' => MENU_LOCAL_TASK,
);
If you are using %php_errors_archive_id you need to implement menu loader for that token (in that case php_errors_archive_id_load($id)) or replace that token just with wildcard "%". This is also not a local task.
Comments
Comment #1
wojtha commentedPatch includes also the update needed to fix the already installed instances of this module.