Skip to content

Commit

Permalink
Add data-iscustom to element custom links, to stop the list JS from t…
Browse files Browse the repository at this point in the history
…rying to update rowid and formid on AJAX updateRows().
  • Loading branch information
cheesegrits committed Oct 28, 2016
1 parent ee9335e commit a321889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_fabrik/models/element.php
Expand Up @@ -2428,7 +2428,7 @@ protected function addCustomLink(&$v, $data, $repeatCounter = 0)

if (trim($customLink) !== '')
{
$v = '<a href="' . $customLink . '">' . $v . '</a>';
$v = '<a href="' . $customLink . '" data-iscustom="1">' . $v . '</a>';
}
}

Expand Down

0 comments on commit a321889

Please sign in to comment.