Quote:
Okay, I got the updating usergroups to work but i got another problem now, When i run the installer i get some error in my class_dm_threadpost.php file, and i am probrably stupid/blind but i cant find the manually edits for the file
|
Search for pollid... (ctrl+f) its near one of those.
Quote:
Ronin the Cheat release option in the new thread area is not there! I did all the edits too what do i do?
|
Undo the edit you did in newthread and do this:
Code:
FIND IN newthread:
<fieldset class="fieldset">
<legend>$vbphrase[miscellaneous_options]</legend>
<div style="padding:$stylevar[formspacer]px">
<if condition="$bbuserinfo['signature'] != ''"><div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] />$vbphrase[show_your_signature]</label></div></if>
<div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div>
$disablesmiliesoption
</div>
</fieldset>
ADD BELOW:
<if condition="$show['release']">
<fieldset class="fieldset">
<legend>$vbphrase[cheatreleaseoptions]</legend>
<div style="padding:$stylevar[formspacer]px">
<div><label for="cb_postrelease"><input type="checkbox" name="postrelease" value="1" id="cb_postrelease" tabindex="1" $checked[postrelease]/>$vbphrase[thisisarelease]</label></div>
</div>
</fieldset>
</if>