ThorstenA
03-27-2010, 10:00 PM
Usually only tags are suggested, that start with the entered text. This file edit suggests you any tagname that matches the entered text.
Example
You have the tag names "vbulletin, vbulletin 3.8". If you type the tag bul you usually are not displayed any of these tags. After this file edit, you see "vbulletin, vbulletin 3.8" suggested.
Installation
In /forum_root/ajax.php replace
WHERE tagtext LIKE '" . $db->escape_string_like($fragment) . "%'
with
WHERE tagtext LIKE '%" . $db->escape_string_like($fragment) . "%'
Done
Example
You have the tag names "vbulletin, vbulletin 3.8". If you type the tag bul you usually are not displayed any of these tags. After this file edit, you see "vbulletin, vbulletin 3.8" suggested.
Installation
In /forum_root/ajax.php replace
WHERE tagtext LIKE '" . $db->escape_string_like($fragment) . "%'
with
WHERE tagtext LIKE '%" . $db->escape_string_like($fragment) . "%'
Done