vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   [HowTo] Quote Multiple Posts At Once (https://vborg.vbsupport.ru/showthread.php?t=45135)

BlackDeath 12-24-2002 12:29 PM

Quote:

Originally posted by xiphoid


I do not know, maybe because it is an input button with a graphic over it. (Otherwise we would have a third button: see the beta hack for that code) Maybe you can fix it by removing the class="bginput" from the <input ..> tags (there are two that apply to this hack).


removing the bginput solved the issue w/ the "new reply" showing up w/ a white bg. thanks.

Kars10 01-19-2003 11:27 AM

Hi !!
Problem here!! I installed on a "little"- hacked 2.2.9 Board. I installed the Last-Post -Hack by PPN (thats the only modification on newreply). And can“t find the exact code you mean to replace..
I send you my newreply Xiphoid. Can you please have a look??

Thanks.

Floris 01-19-2003 12:16 PM

It is really simple to find, try harder. Search for only one line that might be unique, and you will find it.

Kars10 01-19-2003 04:04 PM

Ok. I found the first line. But that wont help me. The code is different. :(
Please have a look in my file ...

Kars10 01-20-2003 04:32 PM

Thanks for ignoring me and my pm Xiphoid.... :(

Floris 02-07-2003 12:48 PM

You are not allowed to distribute vBulletin files.

My hack is for unhacked board, if you have altered yours, re-apply it to fit your needs. I do not support that.

By the way, hack will work on 2.2.10

Kars10 02-07-2003 01:13 PM

Quote:

You are not allowed to distribute vBulletin files.
What you mean with that? The pm to you?? :)
Thats funny, i thought you have a licence...or have i postet it here in the thread?? :confused:
BTW: Xenon helps me out... :p

Floris 02-07-2003 01:31 PM

The copyright of vbulletin states you are not allowed to distribute the vbulletin files, who cares if someone else also has the license or not.

The point is: I only support for unhacked versions anyway.

Dan_UPC 02-25-2003 03:25 PM

Ok i've got a prob with this hack. If a user who in not logged in clicks the post reply button, they are then asked to log in but then they are taken to a 'no thread specified' error instead of the post reply screen .... looking at the url they are being sent to, it looks fine except that it is missing the &threadid=xxx part of the url. Everything works fine if the user is logged in before they click the link. I'm using 2.2.9 any clues why this is happening?

EDIT: I've fixed the problem, this is how I did it:

In the install instructions, I changed the line that says:

Code:

<form action="newreply.php" method="POST">
to read:

Code:

<form action="newreply.php?threadid=$threadid" method="POST">
That's it! Problem fixed.

Martin64 02-25-2003 09:01 PM

This is great, xiphoid, thanks a lot. :)

Boofo 02-25-2003 09:25 PM

Floris, when I use the quote box, this message:

Quote:

Work -> No Fun > Work > No Fun > Work
Is like this instead:

Quote:

Work -&gt; No Fun -&gt; Work -&gt; No Fun -&gt; Work
If I use the quote button, it looks like it is supposed to. And idea what I can do to make the quote box act the same way?

Great hack, by the way. Thank you. ;)

Boofo 02-25-2003 09:57 PM

Sorry, floris, I figured it out. Oops!

I just changed:

PHP Code:

$pagetext=htmlspecialchars($postinfo[pagetext]); 

to this:

PHP Code:

$pagetext=$postinfo[pagetext]; 

and everything is as it should be. Again, sorry to sound like a newbie here.

Dan_UPC 02-26-2003 05:31 AM

My fix for my earlier problem has bought my attention to another problem with this hack. In the case I described in my last post in this thread, we lose the list of posts the user wants quoted. I guess we need to move all the required info to the url so that everything works ok in this circumstance.

Boofo 02-26-2003 05:41 AM

Please explain what you mean. ;)

Dan_UPC 02-26-2003 10:25 AM

1. Take an unhacked board
2. Set your board so that only registered members can post.
3. Install this hack
4. Make a thread and put a few replies in it
5. Make sure you are logged out
6. Goto the thread you just made and tick the boxes to quote a few of the posts ...
7. Click 'Post Reply'
8. Because you are logged out, you get the no perms screen with the option to log in.
9. Log in on that screen
10. You get an error message 'No Thread Specified' ... I fixed this by adding the thread id to the url as per my earlier post in this thread.
11. You now get the post new reply screen but none of the quotes are there.

squawell 02-28-2003 04:44 AM

how to quote different page's post at once?

i test that and it cant work.....

so anyone can fix that?

Fi_InCogNiTo 03-24-2003 12:13 AM

It would be nice to add a script hat would make this work along with quick reply ;)

Lethal 03-24-2003 11:10 PM

I have 2 styles on my board at the moment, I installed this hack and it works perfectly on the 1 style but the other one, when I click the the check box or just click quote it gives me this parse error:

Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /htdocs/www/forums/newreply.php(68) : eval()'d code on line 2

It gives me that error for every check box I have checked also. I don't understand because it don't give me this error on my other style. So is it from a template?

The error seems to be pointing to this

eval("\$message = \"".gettemplate("quotereply",1,0)."\";");

and this if I have multiple check boxes

eval("\$message .= \"".gettemplate("quotereply",1,0)."\n\n\n\";");

BigJohnson 03-27-2003 10:34 PM

I am having some trouble.

Thisd is what my template looks like.

Code:

{htmldoctype}
<html>
<head><title>$bbtitle - $thread[title]</title>
$headinclude

<script language="javascript" type="text/javascript">
<!--
function aimwindow(aimid) {
        window.open("member.php?s=$session[sessionhash]&action=aimmessage&aim="+aimid,"_blank","toolbar=no,location=no,menubar=no,scrollbars=no,width=175,height=275,resizeable=yes,status=no")
}
function who(userid) {
                window.open("userrate.php?s=$session[sessionhash]&action=show&rateuser="+userid, "whorated", "toolbar=no,scrollbars=yes,resizable=yes,width=230,height=300");
}
function pubs() {
                window.open('member.php?s=$session[sessionhash]&action=pubsthreads&postuserid=$post[userid]','pubsthreads','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=300,height=300,top=200,left=300');
}
function whodownloaded(attachmentid) {
              window.open("whodownloaded.php?s=$session[sessionhash]&attachmentid=" + attachmentid, "whodownloaded", "toolbar=no,scrollbars=yes,resizable=no,width=240,height=300, top=50, left=50");
}
function showwarnings(userid) {
              window.open("warn.php?s=&action=show_warn&userid="+userid,
 "show_warn", "toolbar=no,scrollbars=yes,resizable=yes,width=600,height=350");
}
function addwarnings(postid) {
              window.open("warn.php?s=&action=add_warn&postid="+postid,
 "add_warn", "toolbar=no,scrollbars=yes,resizable=yes,width=400,height=200");
}
function whovoted(pollid) {
              window.open("poll.php?action=whovoted&pollid=$pollinfo[pollid]="+pollid, "whovoted", "toolbar=no,scrollbars=yes,resizable=no,width=350,height=400, top=50, left=50");
  }
// -->
</script>
</head>
<body>
$header

<!-- breadcrumb, nav links -->
<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" bgcolor="{tablebordercolor}" {tableouterextra} width="{contenttablewidth}" align="center"><tr><td>
<table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextra} width="100%">
<form action="newreply.php" method="POST">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="hidden" name="threadid" value="$threadid">
$poll
<form action="newreply.php" method="POST">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="hidden" name="threadid" value="$threadid">
<tr>
        <td bgcolor="{firstaltcolor}" {bevel1} valign="top" width="68%" align="left">$navbar<br>
<smallfont>This thread, which was started by <a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$thread[postuserid]">$thread[postusername]</a>, contains $thread[replycount] replies, has been viewed $thread[views] times, and contains $thread[attach] attachments.</smallfont>
<br>
<smallfont>$pagenav $firstunread&nbsp;</smallfont>
<br>
$ratingdisplay
</td>
<td bgcolor="{secondaltcolor}" {bevel2} valign="top" align="right" width="32%"><smallfont>
<a href="newthread.php?s=$session[sessionhash]&action=newthread&forumid=$forum[forumid]"><img src="{newthreadimage}" border="0" alt="Post New Thread"></a>
&nbsp;
<input type="image" src="$replyclose" border="0" alt="Post A Reply" name="submit" class="bginput"></smallfont>
<br>
<smallfont>
        <img src="{imagesfolder}/prev.gif" alt="" border="0">
        <a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&goto=nextoldest">Last Thread</a>
        &nbsp;
        <a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&goto=nextnewest">Next Thread</a>
        <img src="{imagesfolder}/next.gif" alt="" border="0"></smallfont>
<br>
<smallfont><b>All times are GMT$timediff.<br>The time now is $timenow.</b></smallfont>
</tr>
</table></table>
<!-- /breadcrumb, nav links -->

<a name="posttop"></a>

<!-- End content area table (CREATED IN HEADER!!) --> 
        </td>
</tr>
</table></form>

<!-- spacer -->
<table background="{imagesfolder}/logobg.gif" width="{tablewidth}" cellpadding="0" cellspacing="0" border="0">
<tr><td width="10"><img width="10" height="1" src="{imagesfolder}/space.gif" alt=""></td><td width="100%">
<!-- /spacer -->

<br>

<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" {tableouterextra} width="{contenttablewidth}" align="center"><tr><td>
<table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextra} width="100%">
        <!-- /Thread nav and post images -->
        </td>
</tr>
</table>
</td></tr></table>

<!-- /spacer -->
</td><td width="10"><img width="10" height="1" src="{imagesfolder}/space.gif" alt=""></td></tr></table>
<!-- /spacer -->

$postbits

<!-- spacer -->
<table background="{imagesfolder}/logobg.gif" width="{tablewidth}" cellpadding="0" cellspacing="0" border="0">
<tr><td width="10"><img width="10" height="1" src="{imagesfolder}/space.gif" alt=""></td><td width="100%">
<!-- spacer -->

<!-- breadcrumb, nav links -->
<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" bgcolor="{tablebordercolor}" {tableouterextra} width="{contenttablewidth}" align="center"><tr><td>
<table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextra} width="100%">
<form action="newreply.php" method="POST">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="hidden" name="threadid" value="$threadid">
<tr>
<td bgcolor="{secondaltcolor}" {bevel2} valign="top" align="left" width="32%"><smallfont>
<a href="newthread.php?s=$session[sessionhash]&action=newthread&forumid=$forum[forumid]"><img src="{newthreadimage}" border="0" alt="Post New Thread"></a>
&nbsp;
<input type="image" src="$replyclose" border="0" alt="Post A Reply" name="submit" class="bginput"></smallfont>
<br>
<smallfont>
        <img src="{imagesfolder}/prev.gif" alt="" border="0">
        <a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&goto=nextoldest">Last Thread</a>
        &nbsp;
        <a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&goto=nextnewest">Next Thread</a>
        <img src="{imagesfolder}/next.gif" alt="" border="0"></smallfont>
<br>
<smallfont><b>All times are GMT$timediff.<br>The time now is $timenow.</b></smallfont></td></form>
        <td bgcolor="{firstaltcolor}" {bevel1} valign="top" width="68%" align="left">$navbar<br>
<smallfont>This thread, which was started by <a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$thread[postuserid]">$thread[postusername]</a>, contains $thread[replycount] replies, has been viewed $thread[views] times, and contains $thread[attach] attachments.</smallfont>
<br>
<smallfont>$pagenav $firstunread&nbsp;</smallfont>
<br>
$ratingdisplay
</tr></td>
</table></table></form></form>
<!-- /breadcrumb, nav links -->

<!-- /spacer -->
</td><td width="10"><img width="10" height="1" src="{imagesfolder}/space.gif" alt=""></td></tr></table>
<!-- /spacer -->


<!-- restart content table from header -->
<table cellpadding="10" cellspacing="0" border="0" width="{tablewidth}" background="{imagesfolder}/logobg.gif" align="center">
<tr>
    <td>

$replybox

$similarthreads

<!-- thread options links -->
<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" bgcolor="{tablebordercolor}" {tableouterextra}  align="center"><tr><td>
<table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextra} width="625">
<tr>
        <td bgcolor="{firstaltcolor}" {bevel1} align="center" width="625" colspan="3"><smallfont>
        <img src="{imagesfolder}/printer.gif" alt="" border="0" align="absmiddle">
        <a href="printthread.php?s=$session[sessionhash]&threadid=$threadid">Show Printable Version</a> |
                <img src="{imagesfolder}/sortasc.gif" alt="" border="0" align="absmiddle">
                <a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&action=download">Download Thread</a> |
        <img src="{imagesfolder}/sendtofriend.gif" alt="" border="0" align="absmiddle">
        <a href="sendtofriend.php?s=$session[sessionhash]&threadid=$threadid">Email this Page</a> |
        <img src="{imagesfolder}/subscribe.gif" alt="" border="0" align="absmiddle">
        $log_subscription_link
        </smallfont></td>
</tr>
<tr>
        <td bgcolor="{secondaltcolor}" {bevel2} align="center" width="40%">$forumjump</td>
        <td bgcolor="{secondaltcolor}" {bevel2} align="center" width="30%">$adminoptions</td>
        <td bgcolor="{secondaltcolor}" {bevel2} align="center" width="30%">$threadrateselect</td>
</tr>
<tr>
        <td colspan="3" bgcolor="{firstaltcolor}" {bevel1} align="center" width="100%">$searchthread</td>
</tr>
</table>
</td></tr></table>
<!-- /thread options links -->

<br>

<!-- forum rules and admin links -->
<table cellpadding="2" cellspacing="0" border="0" width="{contenttablewidth}" {tableinvisibleextra} align="center">
<tr valign="bottom">
<center><td align="center"><smallfont><b>Forum Rules:</b>$forumrules</smallfont></td></center>
</tr>
</table>
<!-- /forum rules and admin links -->

$footer

        <object classid="clsid:FB7199AB-79BF-11d2-8D94-0000F875C541" codeType="application/x-oleobject" id="MsgrApp" width="0" height="0"></object>
        <object classid="clsid:F3A614DC-ABE0-11d2-A441-00C04F795683" codetype="application/x-oleobject" id="MsgrObj" width="0" height="0" codebase="#Version=2,0,0,83"></object>

</body>
</html>

When i click the quote box and then click reply nothing shows in the message area. I don't know what my problem is.

I am guessing it has something to do with the FORM actions and closing of the form tags in the wrong areas. Can someone please help me thanks.

Lethal 03-28-2003 03:17 AM

I am having the same problem but only with one template set. Everything is fine with one but the other one gives me an error and nothing shows up.

InnerSelf 03-28-2003 11:59 PM

if i replace this in my template
Code:

+-------------------------------------------------------------------------------------------------+
| (3a) In the "showthread" template, replace both! instances of code:                            |
+-------------------------------------------------------------------------------------------------+
<a href="newreply.php?s=$session[sessionhash]&action=newreply&threadid=$threadid"><img src="$replyclose" border="0" alt="Post A Reply"></a>
+-------------------------------------------------------------------------------------------------+

+-------------------------------------------------------------------------------------------------+
| (3b) With this code:                                                                            |
+-------------------------------------------------------------------------------------------------+
<input type="image" src="$replyclose" border="0" alt="Post A Reply" name="submit" class="bginput">
+-------------------------------------------------------------------------------------------------+

then my "post a reply is weird.

if i click it without checked boxes i get (please fill smth in the subject field and texteares.

and if i check boxes then it direclty post all those boxes without seeing a newreply field.

any suggestions?

Mathiau 04-03-2003 07:12 AM

alot more forums need this haak!

drumsy 04-03-2003 03:16 PM

One of my styles doesn't use images so the post reply button would be out. How do I replace it instead with a text link "Post Reply"?

futuredood 04-04-2003 01:59 AM

Quote:

03-29-03 at 01:59 AM InnerSelf said this in Post #61
if i replace this in my template
Code:

+-------------------------------------------------------------------------------------------------+
| (3a) In the "showthread" template, replace both! instances of code:                            |
+-------------------------------------------------------------------------------------------------+
<a href="newreply.php?s=$session[sessionhash]&action=newreply&threadid=$threadid"><img src="$replyclose" border="0" alt="Post A Reply"></a>
+-------------------------------------------------------------------------------------------------+

+-------------------------------------------------------------------------------------------------+
| (3b) With this code:                                                                            |
+-------------------------------------------------------------------------------------------------+
<input type="image" src="$replyclose" border="0" alt="Post A Reply" name="submit" class="bginput">
+-------------------------------------------------------------------------------------------------+

then my "post a reply is weird.

if i click it without checked boxes i get (please fill smth in the subject field and texteares.

and if i check boxes then it direclty post all those boxes without seeing a newreply field.

any suggestions?


same problem here, anyone??

Lethal 04-04-2003 03:27 AM

Quote:

03-24-03 at 08:10 PM Lethal said this in Post #58
I have 2 styles on my board at the moment, I installed this hack and it works perfectly on the 1 style but the other one, when I click the the check box or just click quote it gives me this parse error:


Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /htdocs/www/forums/newreply.php(68) : eval()'d code on line 2


It gives me that error for every check box I have checked also. I don't understand because it don't give me this error on my other style. So is it from a template?

The error seems to be pointing to this

eval("\$message = \"".gettemplate("quotereply",1,0)."\";");

and this if I have multiple check boxes

eval("\$message .= \"".gettemplate("quotereply",1,0)."\n\n\n\";");





HELP PLZ!!

212rikanmofo 04-20-2003 05:28 PM

ok i installed this hack but when i check mark the messages i wanna quote and then hick the reply button, nothing happens at all... im in 2.3.0, whats goin on... i checked it over so many times, i cant figure out why when i hit the button nothing happens at all...

212rikanmofo 04-20-2003 05:48 PM

nm, i fixed it, forgot to skip a line when editing newreply.php, stupid me :)

Floris 04-27-2003 08:25 AM

It just came to my attention that when I released this hack that I totally overlooked to provide the right credits to a section of this hack.

https://vborg.vbsupport.ru/showthrea...109#post246109

Here b-b00gie explains to us of how to integrate the "multiple quotes" and the "submit reply" functions into one.

I changed it a little bit while I was working on this version, and just forgot about it. And first couldn't find the post in the beta thread no more. But anyway. Credits ofcourse goto him.

The first post is updated, no code has changed, only credits added.

Floris 04-27-2003 08:25 AM

It just came to my attention that when I released this hack that I totally overlooked to provide the right credits to a section of this hack.

https://vborg.vbsupport.ru/showthrea...109#post246109

Here b-b00gie explains to us of how to integrate the "multiple quotes" and the "submit reply" functions into one.

I changed it a little bit while I was working on this version, and just forgot about it. And first couldn't find the post in the beta thread no more. But anyway. Credits ofcourse goto him.

The first post is updated, no code has changed, only credits added.

trafix 04-27-2003 09:02 AM

oh well i tried to install but the section of code in the newreply.php is different to what is in the instructions :(

msimplay 05-08-2003 06:43 AM

this work on 2.3 ?

msimplay 05-08-2003 06:30 PM

installed and confirmed working on Vbulletin 2.3 release candidate 3

SiGmA_X 05-29-2003 01:09 AM

I'm having a strange problem.. Followed all directions, and it works IF and only IF you click a 'quote' box. If you do not, it doesn't let you reply. Is there a way to make it so you can click Reply no matter what? :)

kevin_r1 06-02-2003 02:00 PM

Quote:

03-29-03 at 02:59 AM InnerSelf said this in Post #61
if i replace this in my template
Code:

+-------------------------------------------------------------------------------------------------+
| (3a) In the "showthread" template, replace both! instances of code:                            |
+-------------------------------------------------------------------------------------------------+
<a href="newreply.php?s=$session[sessionhash]&action=newreply&threadid=$threadid"><img src="$replyclose" border="0" alt="Post A Reply"></a>
+-------------------------------------------------------------------------------------------------+

+-------------------------------------------------------------------------------------------------+
| (3b) With this code:                                                                            |
+-------------------------------------------------------------------------------------------------+
<input type="image" src="$replyclose" border="0" alt="Post A Reply" name="submit" class="bginput">
+-------------------------------------------------------------------------------------------------+

then my "post a reply is weird.

if i click it without checked boxes i get (please fill smth in the subject field and texteares.

and if i check boxes then it direclty post all those boxes without seeing a newreply field.

any suggestions?


That makes 3 of us.

Leah 06-11-2003 10:38 AM

Quote:

02-28-03 at 07:44 AM squawell said this in Post #56
how to quote different page's post at once?

i test that and it cant work.....

so anyone can fix that?

Anyone?

kevin_r1 06-11-2003 11:22 AM

Quote:

06-02-03 at 04:00 PM kevin_r1 said this in Post #74
That makes 3 of us.
Is it safe to assume we're just sh!t outta luck?

DelFDgfd_gT 06-23-2003 05:50 PM

PHP Code:

style="background: #backgroundcolor;" 

I added that and it made the white space behind the new reply image not noticeable.

Aaron1 08-28-2003 09:00 AM

Hmm, i really can't get it to work! Argh!

I really followed the instruction by the letter, but when i select which posts i want to be quoted, and i click on 'New Reply', it just submits, the quotes right into a new post, without going to the new reply page...

Maybe it has something to do with a redirect removal?

This is what i got below the hack in newreply.php:

PHP Code:

$threadid=verifyid("thread",$threadid);

$threadinfo=getthreadinfo($threadid);

if (!
$threadinfo[visible]) {
  
$idname="thread";
  eval(
"standarderror(\"".gettemplate("error_invalidid")."\");");
}
if (!
$threadinfo[open]) {
  if (!
ismoderator($threadinfo[forumid],"canopenclose")) {
    eval(
"standardredirect(\"".gettemplate("redirect_threadclosed")."\",\"showthread.php?s=$session[sessionhash]&threadid=$threadid\");");
    exit;
  }


Maybe it hasn't got anything to do with it, but nevertheless it could be though!
Please help! :classic:

TSN 09-19-2003 01:53 AM

Will this work in version 2.3.2?

Floris 09-19-2003 07:03 AM

Quote:

Originally Posted by TSN
Will this work in version 2.3.2?

It should also work with 2.3.2 - just compare the code and if you think it requires some changes, try it out .. im sure it will work.


All times are GMT. The time now is 04:35 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02498 seconds
  • Memory Usage 1,905KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (4)bbcode_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete