Active
Project:
Open Web Analytics
Version:
7.x-1.0-alpha2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Feb 2013 at 17:13 UTC
Updated:
11 Feb 2013 at 17:13 UTC
This is a low priority In status reporting (admin/reports/status) the url is incorrect and sends you over to admin/settings/owa. Guessing this wasn't ported over from D6. Url should go to admin/config/system/owa.
This resolved for me.
/**
* Implementation of hook_requirements().
*/
function owa_requirements($phase) {
$requirements = array();
if ($phase == 'runtime') {
// Raise warning if Open Web Analytics user account has not been set yet.
if (variable_get('owa_account', '') == '') {
$requirements['owa'] = array(
'title' => t('Open Web Analytics module'),
'description' => t('Open Web Analytics module has not been configured yet. Please configure its settings from the <a href="@url">Open Web Analytics settings page</a>.', array('@url' => url('admin/config/system/owa'))),
'severity' => REQUIREMENT_ERROR,
'value' => t('Not configured'),
);
}
}