diff --git a/administrator/components/com_actionlogs/helpers/actionlogs.php b/administrator/components/com_actionlogs/helpers/actionlogs.php index 18d47376dbe96..1b302e6065407 100644 --- a/administrator/components/com_actionlogs/helpers/actionlogs.php +++ b/administrator/components/com_actionlogs/helpers/actionlogs.php @@ -179,6 +179,12 @@ public static function getHumanReadableLogMessage($log) */ public static function getContentTypeLink($component, $contentType, $id, $urlVar = 'id') { + if ($contentType === 'form') + { + // Translate to backend + $contentType = 'article'; + } + // Try to find the component helper. $eName = str_replace('com_', '', $component); $file = Path::clean(JPATH_ADMINISTRATOR . '/components/' . $component . '/helpers/' . $eName . '.php');