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.

CommentFileSizeAuthor
#1 1460132-1-archive-detail-router.patch1.88 KBwojtha

Comments

wojtha’s picture

Status: Active » Needs review
StatusFileSize
new1.88 KB

Patch includes also the update needed to fix the already installed instances of this module.