Quote:
04-24-03 at 09:36 PM alkatraz said this in Post #2
will this affect the way vbulletin performs? Why would the developers add the posting redirection if it wasn't required somehow? plz let me know cuz i'd like to install this
|
Glad to hear it works!
Just tried installing it but my code is much different...
your code says to find:
[code]// redirect
if ($prevpost[visible]) {
$goto="showthread.php?s=$session[sessionhash]&postid=$postid#post$postid";
} else {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid";
}
eval("standardredirect(\"".gettemplate("redirect_p ostthanks")."\",\"$goto\");");[/quote]
But My code looks like this:
Code:
// redirect
if ($visible) {
$goto="showthread.php?s=$session[sessionhash]&postid=$postid#post$postid";
} else {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$threadinfo[forumid]";
}
if ($closeopen) {
if (!ismoderator($threadinfo[forumid],'canopenclose')) {
$permissions=getpermissions($threadinfo[forumid]);
if (!$permissions[canview] or !$permissions[canopenclose]) {
show_nopermission();
} else {
$firstpostinfo=$DB_site->query_first("SELECT userid FROM post WHERE threadid='$threadid' ORDER BY dateline LIMIT 1");
if ($bbuserinfo[userid]!=$firstpostinfo[userid]) {
show_nopermission();
}
}
}
updateuserforum($threadinfo[forumid]);
if ($threadinfo[open]) {
$threadinfo[open]=0;
$action='closed';
} else {
$threadinfo[open]=1;
$action='opened';
}
$threadinfo[notes]="Thread $action by $bbuserinfo[username] on ".vbdate($dateformat." ".$timeformat,time()).". $threadinfo[notes]";
$DB_site->query("UPDATE thread SET open=$threadinfo[open],notes='".addslashes($threadinfo[notes])."' WHERE threadid='$threadid'");
eval("standardredirect(\"".gettemplate("redirect_openclose")."\",\"showthread.php?s=$session[sessionhash]&threadid=$threadid\");");
I haven't done any mods that I can think of that would change the code in this area..?