This might help many with the bug of duplicated thread.
IN glossary_editterm template
FIND
Quote:
<form action="glossary.php" method="post" name="vbform"<if condition="!is_browser('webtv')"> onsubmit="return vB_Editor['$editorid'].prepare_submit(this.subject.value, $vboptions[postminchars])"</if>>
|
REPLACE WITH
Quote:
<form action="glossary.php?do=editconfirm" method="post" name="vbform"<if condition="!is_browser('webtv')"> onsubmit="return vB_Editor['$editorid'].prepare_submit(this.subject.value, $vboptions[postminchars])"</if>>
|
in glossary.php in the editconfirm IF statement
FIND
Quote:
eval(standard_error(fetch_error('glossary_this_is_ already_term_named_x', $vbulletin->GPC['subject'])));
|
REPLACE WITH
Quote:
//eval(standard_error(fetch_error('glossary_this_is_ already_term_named_x', $vbulletin->GPC['subject'])));
// this is NORMAL!
|