Skip to content
Snippets Groups Projects
Commit aad4c93b authored by JediKev's avatar JediKev
Browse files

issue: Custom Column Org Link

This addresses issue 4579 where setting a Custom Column to User Organization
and choosing the User Org Link filter the system shows the wrong link to the
Org. This is due to "scp/" not being added to the URL therefore showing an
invalid link.
parent a2aa8aec
No related branches found
No related tags found
No related merge requests found
...@@ -489,7 +489,7 @@ implements TemplateVariable, Searchable { ...@@ -489,7 +489,7 @@ implements TemplateVariable, Searchable {
if (!$id || !$thisstaff) if (!$id || !$thisstaff)
return false; return false;
return ROOT_PATH . sprintf('orgs.php?id=%s', $id); return ROOT_PATH . sprintf('scp/orgs.php?id=%s', $id);
} }
static function fromVars($vars) { static function fromVars($vars) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment