Skip to content
Snippets Groups Projects
Commit d94c808b authored by David Snopek's avatar David Snopek Committed by Emil Stjerneman
Browse files

Fixed #1849488 by dsnopek - Linkit puts HTML entities in link text.

parent bdff6417
No related branches found
No related tags found
No related merge requests found
......@@ -236,7 +236,7 @@ function linkit_autocomplete($string = NULL) {
foreach ($matches AS $match) {
// Build the val
$val = check_plain($match['title'] . ' [path:' . $match['path'] . ']');
$val = $match['title'] . ' [path:' . $match['path'] . ']';
// Get the extra information text
$information = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment