the change from version 1.1 to 1.2 is on the newthred.php and editpost.php file
newthread.php
Find:
PHP Code:
$templatesused = "newpost_postpreview,error_nosubject,redirect_postthanks,email_moderator,emailsubject_moderator,newthread_postpoll,newpost_attachment,newpost_disablesmiliesoption,forumrules,newthread,posticons,posticonbit";
Replace with:
PHP Code:
$templatesused = "newpost_postpreview,error_nosubject,error_posttype,redirect_postthanks,email_moderator,emailsubject_moderator,newthread_postpoll,newpost_posttype,newpost_posttypebit,newpost_attachment,newpost_disablesmiliesoption,forumrules,newthread,posticons,posticonbit";
Find:
PHP Code:
// check for subject and message
if (trim($subject)=="" or trim($message)=="") {
eval("standarderror(\"".gettemplate("error_nosubject")."\");");
exit;
}
Add below:
PHP Code:
if (trim($posttype2)=="") {
$custompostname = $foruminfo[custompostname];
eval("standarderror(\"".gettemplate("error_posttype")."\");");
exit;
}
editpost.php
Find:
PHP Code:
$templatesused="forumrules,newpost_disablesmiliesoption,editpost,posticons,posticonbit,username_loggedin,redirect_editthanks";
Replace with:
PHP Code:
$templatesused="forumrules,newpost_disablesmiliesoption,editpost,error_posttype,newpost_posttype,newpost_posttypebit,posticons,posticonbit,username_loggedin,redirect_editthanks";
Find:
PHP Code:
// check for message
if ($message=="") {
eval("standarderror(\"".gettemplate("error_nosubject")."\");");
exit;
}
Add Below:
PHP Code:
if (trim($posttype2)=="") {
$custompostname = $foruminfo[custompostname];
eval("standarderror(\"".gettemplate("error_posttype")."\");");
exit;
}
---------------------------------//----------------------------------------
Below is the update for version 1.1 but i forgot to include it with version 1.1. please check the code..
sory for the mess..
Find: (version 1.1)
PHP Code:
if (!empty($foruminfo[custompostname])) {
$prefixes = explode(" ", $foruminfo[customposttypes]);
$posttypeoptions = "";
$total = count($prefixes);
$count = "0";
while ($count < $total) {
$prefixes[$count] = str_replace("_", " ", $prefixes[$count]);
$selected=iif($prefixes[$count]==$threadinfo[customprefix],"selected","");
eval("\$posttypebit = \"".gettemplate("newpost_posttypebit")."\";");
$posttypeoptions .= $posttypebit;
$count++;
}
$permissions=getpermissions();
if ($permissions['canusecustomprefixes']) {
$custompostname = $foruminfo[custompostname];
eval("\$posttype = \"".gettemplate("newpost_posttype")."\";");
}
}
Replace below
PHP Code:
if (!empty($foruminfo[custompostname])) {
$prefixes = explode(" ", $foruminfo[customposttypes]);
$posttypeoptions = "";
$total = count($prefixes);
$count = "0";
while ($count < $total) {
$prefixes[$count] = str_replace("_", " ", $prefixes[$count]);
$selected=iif($prefixes[$count]==$threadinfo[customprefix],"selected","");
eval("\$posttypebit = \"".gettemplate("newpost_posttypebit")."\";");
$posttypeoptions .= $posttypebit;
$count++;
}
$permissions=getpermissions($foruminfo[forumid]);
if ($permissions['canusecustomprefixes'] or $permissions['canusepostprefixes']) {
$custompostname = $foruminfo[custompostname];
eval("\$posttype = \"".gettemplate("newpost_posttype")."\";");
}
}
Run the query:
PHP Code:
ALTER TABLE forumpermission ADD canusepostprefixes SMALLINT(6) NOT NULL AFTER canpostnew;
i forgot to include the template sory..
Create new template name
error_posttype
Code:
Please select the <b>$custompostname</b> field. Press the back button, correct the problem and try again.
hope this will help ya out..
//regards...