When listing units or groups, the generated links to access details about the individual units or groups lack the initial domain. So, for instance, on my group listing page, the link to edit the third group is:

http://admin/ticket/edit/group/3

Instead of:

http://www.example.com/admin/ticket/edit/group/3

The tab to access the Add Group functionality is a valid URL.

Comments

emilyf’s picture

I can second this issue. It's happening on many of the administrative URLS.

toftat’s picture

I got this too, fixed it by removing the leading '/' from each occurrance of l() for example

$row['unit_name'] = l($row['unit_name'], '/admin/ticket/'.$row['u_id']);

becomes

$row['unit_name'] = l($row['unit_name'], 'admin/ticket/'.$row['u_id']);

there are many of these that require similar changes

niif’s picture

Thanks for the suggestion. We build it into the main release.

niif’s picture

Status: Active » Closed (fixed)