Okay I've test this issue on my test site and I can't recreate this issue you guys are having however I have looked into the current release of the mod and I have noticed that it is missing some code lol. Don't know how that happened but for anyone having this issue you will need to do the following. Let me know if it works. Find this code in the glossary.php under the 'editconfirm' request:
PHP Code:
if (strtolower($checkname['glossaryname']) == strtolower($vbulletin->GPC['subject']))
Replace it with this new code:
PHP Code:
if (strtolower($checkname['glossaryname']) == strtolower($vbulletin->GPC['subject']) AND ($checkname['glossaryid'] != $vbulletin->GPC['glossaryid']))
Then in admin_glossary.php find the following code in the 'edit_confirm' request:
PHP Code:
if (strtolower($checkname['glossaryname']) == strtolower($vbulletin->GPC['glossaryname']))
Replace it with this code:
PHP Code:
if (strtolower($checkname['glossaryname']) == strtolower($vbulletin->GPC['glossaryname']) AND ($checkname['glossaryid'] != $vbulletin->GPC['glossaryid']))
I will do a offical fix on next release.