PDA

View Full Version : Quick Thread hack (like quick reply, on forumdisplay!)


Gary King
02-12-2004, 10:00 PM
This hack is like the quick reply hack but on forumdisplay, so when viewing a forum, if the user has proper permissions to make a new thread then this quick thread box will show up for them.

Also view the screenshot to see how it looks :)

Features
Shows the user's signature if they have one!
subscribes to the thread according to what the user specified in their user options!


Additions
make it look better (https://vborg.vbsupport.ru/showpost.php?p=523382&postcount=61)
able to collapse the table (https://vborg.vbsupport.ru/showpost.php?p=523492&postcount=63)
better looking table (if the mod above does not work) (https://vborg.vbsupport.ru/showpost.php?p=523594&postcount=64)


Instructions

OPEN forumdisplay.php AND FIND
$phrasegroups = array('forumdisplay');
REPLACE WITH

$phrasegroups = array('forumdisplay','posting');


Find
require_once('./includes/functions_forumdisplay.php');
Add belowrequire_once('./includes/functions_newpost.php');


FIND

// check if there is a forum password and if so, ensure the user has it set

ABOVE, ADD

$foruminfo = fetch_foruminfo($forumid);

if (!($foruminfo['allowposting']==0 or !($forumperms & CANVIEW) or !($forumperms & CANPOSTNEW)))
{
require_once('./includes/functions_editor.php');

// get the checked option for auto subscription
$emailchecked = fetch_emailchecked($threadinfo, $bbuserinfo, $newpost);

if ($emailchecked[9999])
{
$emailupdate = '9999';
}
if ($emailchecked[0])
{
$emailupdate = '0';
}
if ($emailchecked[1])
{
$emailupdate = '1';
}
if ($emailchecked[2])
{
$emailupdate = '2';
}
if ($emailchecked[3])
{
$emailupdate = '3';
}

$textareacols = fetch_textarea_width();
eval("\$quickthread = \"" . fetch_template('forumdisplay_quickthread')."\";");
}


CREATE A NEW TEMPLATE CALLED forumdisplay_quickthread
WITH THE FOLLOWING CONTENT
<form action="newthread.php" method="post" name="vbform">
<input type="hidden" name="s" value="$session[sessionurl]" />
<input type="hidden" name="forumid" value="$forumid" />
<input type="hidden" name="do" value="postthread" />
<input type="hidden" name="parseurl" value="1" />

<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td class="thead" colspan="2">$vbphrase[quick_new_thread]</td>
</tr>
<tr>
<td class="alt1" colspan="2"><span class="smallfont"><phrase 1="$session[sessionurl]" 2="$foruminfo[forumid]">$vbphrase[more_options_newthread]</phrase></span></td>
</tr>
<tr class="alt2">
<td class="alt2"><b>$vbphrase[subject]:</b></td>
<td class="alt2"><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
</tr>
<tr>
<td class="alt1" valign="top" nowrap="nowrap"><b>$vbphrase[message]:</b></td>
<td class="alt1">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td><textarea name="message" rows="7" cols="$textareacols" tabindex="2">$message</textarea></td>
</tr>
</table>
</td>
</tr>
</table>
</td></tr></table>

<br />

<table cellpadding="2" cellspacing="0" border="0" width="95%" align="center">
<tr>
<td align="center">
<input type="submit" class="bginput" name="submit" value="$vbphrase[submit_new_thread]" accesskey="s" tabindex="3" />
<input type="submit" class="bginput" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="4" />
</td>
</tr>
</table>
<input type="hidden" name="signature" value="1" />
<input type="hidden" name="emailupdate" value="$emailupdate" />
</form>






OPEN forumdisplay TEMPLATE AND FIND

<!-- / controls below thread list -->

BELOW ADD
<br />$quickthread


CREATE THE FOLLOWING PHRASES
(They're in the form of 'phrase_name' / 'phrase_content')
(ALL IN 'Forum Display' CATEGORY!):

quick_new_thread / Quick New Thread
more_options_newthread / <a href="newthread.php?{1}do=newthread&amp;f={2}">Click here</a> for more posting options.


THE HACK IS NOW INSTALLED, ENJOY!

Scope
02-13-2004, 01:48 AM
awesome. good lookin out.

Logikos
02-13-2004, 02:18 AM
Nice!

FleaBag
02-13-2004, 04:42 AM
This will probably come in handy for a lot of users - surprised nobody thought of it before!

Boofo
02-13-2004, 05:41 AM
There was a vB2 hack of the same thing. I think nakkid did it.

Erwin
02-13-2004, 06:32 AM
Groovy. :)

colicab-d
02-13-2004, 06:46 AM
ooooh interesting.... dunno if i,ll install tho im just a bit unsure about even more quickness lol

freakyshiat
02-13-2004, 02:35 PM
this is not working for me. I have rechecked it over and over. Is it working for anyone?

Gary King
02-13-2004, 02:40 PM
this is not working for me. I have rechecked it over and over. Is it working for anyone?
What doesn't work?

gmarik
02-13-2004, 03:31 PM
How much queris does this adds>?

version2
02-13-2004, 04:34 PM
What doesn't work?
Hmm. The box isnt showing up. Added all the code and templates. *scratches head*

version2
02-13-2004, 04:37 PM
Hmm. The box isnt showing up. Added all the code and templates. *scratches head*
Wait a sec. I am looking at the instructions and everything. Wouldnt we need to place:

$quickthread

somewhere in the FORUMDISPLAY templates?

Gary King
02-13-2004, 04:40 PM
Wait a sec. I am looking at the instructions and everything. Wouldnt we need to place:

$quickthread

somewhere in the FORUMDISPLAY templates?
Thanks, I missed adding that step. Fixed now, just find the part in the instructions where you have to modify the forumdisplay template :)

Gary King
02-13-2004, 04:41 PM
How much queris does this adds>?
Add 0 extra queries ;)

version2
02-13-2004, 04:44 PM
Add 0 extra queries ;)
New little error:

When you click to post the new tread it throws a javascript error:

Line: 2857
Error: Object Expected

Gary King
02-15-2004, 02:40 PM
New little error:

When you click to post the new tread it throws a javascript error:

Line: 2857
Error: Object Expected
Fixed in the new attachment now :)

Erwin
02-26-2004, 09:24 AM
What would be good is if you can incorporate the WYSIWYG interface... but I like it like this since it loads quickly. :)

NexVision
02-29-2004, 05:53 AM
this is a neat hack however how would we restrict this for certain groups only like admins and mods or vice versa

Gary King
02-29-2004, 01:33 PM
this is a neat hack however how would we restrict this for certain groups only like admins and mods or vice versa
Replace the else in the new code with elseif ($bbuserinfo[usergroupid] == X)

Don't forget to replace X with the usergroupids!

Add the following for more usergroups :) or $bbuserinfo[usergroupid] == X

NexVision
02-29-2004, 09:20 PM
sweet im gonna install this as soon as i finish with the bugs in vbadvanced thanx

Steve123
03-14-2004, 02:00 AM
You mite wanna add

forumdisplay_quickthread

to the $actiontemplates array at the start of the forumdisplay.php..

Or when it calls for the template it will create a query..

maverick1236
03-25-2004, 12:23 PM
how can i add smilies to this?

Red Blaze
03-26-2004, 03:54 PM
Gary, when I add

or $bbuserinfo[usergroupid] == X

I get an parse error. I want to add only the staff to see the quick post. Right now, I only have admins viewing it.

Gary King
03-26-2004, 07:31 PM
Gary, when I add

or $bbuserinfo[usergroupid] == X

I get an parse error. I want to add only the staff to see the quick post. Right now, I only have admins viewing it.
You have to change X to the usergroupid.

Red Blaze
03-26-2004, 09:28 PM
I did. :p But still got that error.

Gary King
03-26-2004, 10:42 PM
You didn't even tell us what error you get ;)

Red Blaze
03-27-2004, 02:13 AM
It's a parse error. Doesn't tell me anything else but that there's wrong coding on that line. Sheesh, nevermind, I'll just use it for admin use.

Gary King
03-27-2004, 03:08 AM
It's a parse error. Doesn't tell me anything else but that there's wrong coding on that line. Sheesh, nevermind, I'll just use it for admin use.
Even posting the parse error will help; if you don't want to post it, we can't help you. If we can't help you because you don't want to post the parse error, there isn't any reason to get angry at us :)

Red Blaze
03-27-2004, 06:04 PM
Here

Parse error: parse error in /home/thesonic/public_html/home/forum/forumdisplay.php on line 205

Is that really that much help? It only tells you what line it is and it's

elseif ($bbuserinfo[usergroupid] == 6)or $bbuserinfo[usergroupid] == 5

I also tried:

elseif ($bbuserinfo[usergroupid] == 6) or $bbuserinfo[usergroupid] == 5

and

elseif ($bbuserinfo[usergroupid] == 6)
or $bbuserinfo[usergroupid] == 5

Still got that same error.

The elseif code works, it's the "or" that doesn't.

Gary King
03-27-2004, 07:45 PM
Here

Parse error: parse error in /home/thesonic/public_html/home/forum/forumdisplay.php on line 205

Is that really that much help? It only tells you what line it is and it's

elseif ($bbuserinfo[usergroupid] == 6)or $bbuserinfo[usergroupid] == 5

I also tried:

elseif ($bbuserinfo[usergroupid] == 6) or $bbuserinfo[usergroupid] == 5

and

elseif ($bbuserinfo[usergroupid] == 6)
or $bbuserinfo[usergroupid] == 5

Still got that same error.

The elseif code works, it's the "or" that doesn't.
Glad you posted that, next time please remember to post the line and error instead of just saying 'no it won't help' :)

Try this and I'm sure it will help ;) (replace your old line)elseif ($bbuserinfo[usergroupid] == 6 or $bbuserinfo[usergroupid] == 5)

MGM
03-28-2004, 06:14 PM
hey Gary, there's a small problem... whenever we use the Quick Thread, it automatically adds that thread to the subscribed threads list for the user who created it..... any way to stop this?

MGM out

Gary King
03-28-2004, 08:52 PM
Add this before </form>:<input type="hidden" name="emailupdate" value="9999" />

Chris Blount
03-29-2004, 04:48 AM
Very nice Hack Gary! Installed with no problems. Thanks!

One question. Is there a way to get the signature to work when posting with the quick thread box?

Gary King
03-29-2004, 07:03 PM
Very nice Hack Gary! Installed with no problems. Thanks!

One question. Is there a way to get the signature to work when posting with the quick thread box?
Add this before </form>:<input type="hidden" name="signature" value="1" />

Chris Blount
03-29-2004, 08:27 PM
Add this before </form>:<input type="hidden" name="signature" value="1" />
That did the trick! Thanks again!

Gary King
04-01-2004, 11:30 PM
I have updated this hack! HUGE changes made, including visual enhancements (text changes, made things look better) and also I added support for signatures and email updates / notifications, depending on what the user's options are in his user cp! :)

Steve123
04-02-2004, 12:28 AM
There is no update instuctions?

I tried to update and now im getting no output and this in error logs..

[Fri Apr 2 12:21:32 2004] [error] PHP Parse error: parse error in /path/to/forum/forumdisplay.php on line 203
[Fri Apr 2 12:22:59 2004] [error] PHP Fatal error: Call to undefined function: fetch_emailchecked() in /path/to/forum/forumdisplay.php on line 210

Which is

$emailchecked = fetch_emailchecked($threadinfo, $bbuserinfo, $newpost);

Im using vb3..

Gary King
04-02-2004, 01:07 AM
There is no update instuctions?

I tried to update and now im getting no output and this in error logs..

[Fri Apr 2 12:21:32 2004] [error] PHP Parse error: parse error in /path/to/forum/forumdisplay.php on line 203
[Fri Apr 2 12:22:59 2004] [error] PHP Fatal error: Call to undefined function: fetch_emailchecked() in /path/to/forum/forumdisplay.php on line 210

Which is

$emailchecked = fetch_emailchecked($threadinfo, $bbuserinfo, $newpost);

Im using vb3..
Add this code in forumdisplay.php:
require_once('./includes/functions_newpost.php');

Steve123
04-02-2004, 01:12 AM
heh.. i swear i added it... oh well :P works now :P ta

Slave
04-03-2004, 01:03 AM
Cool .. installed .. :)

Erwin
04-03-2004, 03:01 AM
Thanks for the update. :)

enginethatcan't
04-13-2004, 12:33 AM
nothing is showing up but I did everystep, is this a template or file problem?

Gary King
04-13-2004, 01:17 AM
nothing is showing up but I did everystep, is this a template or file problem?
Template most likly.

Slave
04-13-2004, 05:39 AM
Gary .. any chance you could add collapsibility to it?

Chris Blount
04-19-2004, 03:55 AM
I noticed that this hack doesn't automatically parse links in text. Is there a way to fix this?

Thanks!

Gary King
04-19-2004, 11:20 AM
I noticed that this hack doesn't automatically parse links in text. Is there a way to fix this?

Thanks!
Add this under all the other hidden elements:<input type="hidden" name="parseurl" value="1" />

Chris Blount
04-19-2004, 06:29 PM
Add this under all the other hidden elements:<input type="hidden" name="parseurl" value="1" />

Works great! Thanks so much for your help and support.

RichieBoy67
04-21-2004, 06:32 PM
Newbie Question....I was doing fine until the add phrase thing....How do I add that? I know about the Phrase manager but please explain further..

Thanks,

Rich

Gary King
04-21-2004, 06:44 PM
In the phrase manager, click on 'Add New Phrase' at the bottom.

RichieBoy67
04-21-2004, 06:46 PM
Thanks Gary..I know about that but I'm not sure what to do once I get in the manager..I'm not sure exactly what to add for varname and text.... Or do I just place it in all in the bottom translation box...

Thanks again,

Rich

Gary King
04-21-2004, 07:01 PM
varname: quick_new_thread
text: Quick New Thread

RichieBoy67
04-21-2004, 07:23 PM
Thanks Gary

Eternal2u
04-25-2004, 07:17 AM
This mod ++++ing rules..

Just so you know tho the following is not needed and does nothing but tell me no forum thread specified..

quick_new_thread / Quick New Thread
more_options_newthread / <a href="newthread.php?{1}do=newthread&amp;f={2}">Click here</a> for more posting options.

so i removed the sob

Gary King
04-25-2004, 01:40 PM
This mod ++++ing rules..

Just so you know tho the following is not needed and does nothing but tell me no forum thread specified..



so i removed the sob
Please copy and paste the URL that it leads to in the output.

Host Directory
04-27-2004, 07:54 PM
Please copy and paste the URL that it leads to in the output.
I am really confused about the phrases...
Am i supposed to add a new phrase like this?
Phrase type = Forum Display
Varname = quick_new_thread
Text = Quick New Thread

But then what am i supposed to be with quick_new_thread / Quick New Thread
more_options_newthread / <a href="newthread.php?{1}do=newthread&amp;f={2}">Click here</a> for more posting options. ?

Do i put that in the translation box?

Gary King
04-27-2004, 09:55 PM
varname: more_options_newthread
Text: <a href="newthread.php?{1}do=newthread&amp;f={2}">Click here</a> for more posting options.

Host Directory
04-28-2004, 02:07 AM
varname: more_options_newthread
Text: <a href="newthread.php?{1}do=newthread&amp;f={2}">Click here</a> for more posting options.
Got it... thanks Gary. Great hack!

I click install

U-Dox
05-02-2004, 02:14 AM
CREATE THE FOLLOWING PHRASES
(They're in the form of 'phrase_name' / 'phrase_content')
(ALL IN 'Forum Display' CATEGORY!):

i dont see that.... i did everythin else... where would that actually be?

U-Dox
05-02-2004, 03:47 PM
nevermind i found that.. there isnt a button where u can press it and it drops down? instead of just sittin there like that

Gary King
05-02-2004, 04:06 PM
What do you mean?

Karthick
06-16-2004, 11:13 AM
I made a few cosmetic changes to my forumdisplay_quickthread template, here it is:

<form action="newthread.php" method="post" name="vbform">
<input type="hidden" name="s" value="$session[sessionurl]" />
<input type="hidden" name="forumid" value="$forumid" />
<input type="hidden" name="do" value="postthread" />
<input type="hidden" name="parseurl" value="1" />

<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%" align="center"><tr><td>
<table cellpadding="6" cellspacing="1" border="0" width="100%">
<tr>
<td class="tcat" colspan="2">$vbphrase[quick_new_thread]</td>
</tr>
<tr>
<td class="alt1" colspan="2"><span class="smallfont"><phrase 1="$session[sessionurl]" 2="$foruminfo[forumid]">$vbphrase[more_options_newthread]</phrase></span></td>
</tr>
<tr class="alt2">
<td class="alt2"><b>$vbphrase[subject]:</b></td>
<td class="alt2"><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
</tr>
<tr>
<td class="alt1" valign="top" nowrap="nowrap"><b>$vbphrase[message]:</b></td>
<td class="alt1">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td><textarea name="message" rows="7" cols="$textareacols" tabindex="2">$message</textarea><br /><br /><input type="submit" class="button" name="submit" value="$vbphrase[submit_new_thread]" accesskey="s" tabindex="3" />
<input type="submit" class="button" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="4" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td></tr></table>

<br />

<input type="hidden" name="signature" value="1" />
<input type="hidden" name="emailupdate" value="$emailupdate" />
</form>

- button class for buttons.
- tcat instead of thead for table header
- 6 padding instead of 4

This makes it look a little more like the quick reply box.

Heres a screenie:

http://chesschat.org/quickthread.gif

Karthick
06-16-2004, 12:45 PM
Can someone help here:

What I want is the 'Click here for more posting options.' to act as 'Preview Post' if there is any text in the message box.

So basically if you have typed anything, it will preview the post instead of losing anything you have typed.

For some reason, vbform will not submit through javascript. Always getting errors. I do this on a normal HTML page, and it works... ?!

Yapluka
06-16-2004, 07:57 PM
Gary .. any chance you could add collapsibility to it?

I did it with Karthick's template (thanks !) :

Find :

<tr>
<td class="tcat" colspan="2">$vbphrase[quick_new_thread]</td>
</tr>
<tr>
<td class="alt1" colspan="2"><span class="smallfont"><phrase 1="$session[sessionurl]" 2="$foruminfo[forumid]">$vbphrase[more_options_newthread]</phrase></span></td>
</tr>
<tr class="alt2">
<td class="alt2"><b>$vbphrase[subject]:</b></td>
<td class="alt2"><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
<input type="submit" class="button" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="4" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td></tr></table>


Replace with :

<tbody>
<tr>
<td class="tcat" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('quickthread')"><img id="collapseimg_quickthread" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_quickthread].gif" alt="" border="0" /></a>$vbphrase[quick_new_thread]

</td>
</tr>
</tbody>
<tbody id="collapseobj_quickthread" style="$vbcollapse[collapseobj_quickthread]">
<tr>
<td class="alt1" colspan="2"><span class="smallfont"><phrase 1="$session[sessionurl]" 2="$foruminfo[forumid]">$vbphrase[more_options_newthread]</phrase></span></td>
</tr>
<tr class="alt2">
<td class="alt2"><b>$vbphrase[subject]:</b></td>
<td class="alt2"><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
<input type="submit" class="button" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="4" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td></tr></tbody></table>


Thanks for this very useful hack : 56k users love it !

Karthick
06-17-2004, 05:52 AM
Your instruction didn't work, so I just snip bits of codes and made it work: (entire template)

This one is better looking one with collapse aswell.

<form action="newthread.php" method="post" name="vbform">
<input type="hidden" name="s" value="$session[sessionurl]" />
<input type="hidden" name="forumid" value="$forumid" />
<input type="hidden" name="do" value="postthread" />
<input type="hidden" name="parseurl" value="1" />

<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%" align="center"><tr><td>
<table cellpadding="6" cellspacing="1" border="0" width="100%">
<tbody>
<tr>
<td class="tcat" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('quickthread')"><img id="collapseimg_quickthread" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_quickthread].gif" alt="" border="0" /></a>$vbphrase[quick_new_thread]

</td>
</tr>
</tbody>
<tbody id="collapseobj_quickthread" style="$vbcollapse[collapseobj_quickthread]">
<tr>
<td class="alt1" colspan="2"><span class="smallfont"><phrase 1="$session[sessionurl]" 2="$foruminfo[forumid]">$vbphrase[more_options_newthread]</phrase></span></td>
</tr>
<tr class="alt2">
<td class="alt2"><b>$vbphrase[subject]:</b></td>
<td class="alt2"><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
</tr>
<tr>
<td class="alt1" valign="top" nowrap="nowrap"><b>$vbphrase[message]:</b></td>
<td class="alt1">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td><textarea name="message" rows="7" cols="$textareacols" tabindex="2">$message</textarea><br /><br /><input type="submit" class="button" name="submit" value="$vbphrase[submit_new_thread]" accesskey="s" tabindex="3" />
<input type="submit" class="button" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="4" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td></tr></tbody></table>

<br />

<input type="hidden" name="signature" value="1" />
<input type="hidden" name="emailupdate" value="$emailupdate" />
</form>

Yapluka
06-17-2004, 07:18 AM
I don't know what didn't work, but my template is just the same as yours :squareeyed:

Karthick
06-17-2004, 07:21 AM
I don't know what didn't work, but my template is just the same as yours :squareeyed:
I just followed your instruction with find and replace and it didn't work.

kall
08-02-2004, 09:07 PM
Add 0 extra queries ;)
What about the one for the new uncached template?

the wiz
09-28-2004, 12:46 PM
Nice nice. Installed.

the wiz
09-28-2004, 12:59 PM
Oh, I have a question. How can I add the smilies in quick reply to this?

Chris Blount
10-02-2004, 02:44 AM
I may have found a bug. When you are logged out and try to log back in under "forumdisplay.php" containing the quick thread box, after you type your username at the top and press tab, it skips down to the quick thread box rather than the password field.

Any ideas?

amcd
10-20-2004, 09:55 AM
installed on 3.0.3

works fine

cdoyle
11-11-2004, 01:37 AM
hmm,
I followed all the instructions, modified the forumdisplay, added the new template and phrases. But when I view the forum, I don't see anything different?

What could I have missed?

Thanks
Chris.

cdoyle
11-11-2004, 10:52 PM
Is there anything I need to turn on, to make it work?

I went through it twice, and I'm pretty sure I did everything right.

RsX
11-12-2004, 05:04 PM
AHH!! help me im getting a paqrse error!!


Parse error: parse error, unexpected $ in /home/pccjuvj/public_html/forumdisplay.php on line 863


AND THERES ON '$' IN LINE 863 (LAST LINE IN THE FILE)

Lord Brar
12-19-2004, 11:01 AM
This is an absolutely wonderful hack! Thanks :)

* Lord Brar clicks install!

paulmjno
12-19-2004, 06:03 PM
Ha! That rocks. :D Will install later.

Kali
02-03-2005, 03:27 AM
AHH!! help me im getting a paqrse error!!


Parse error: parse error, unexpected $ in /home/pccjuvj/public_html/forumdisplay.php on line 863


AND THERES ON '$' IN LINE 863 (LAST LINE IN THE FILE)


I had the same problem. To fix this, on the last edit for the forumdisplay.php, make sure you get the very last } ... it's easy to miss it. :o

1nf3rn0
05-04-2005, 10:48 PM
Are there any hacks for this pertaining to adding attachments?...if so could you point the way or display the code for me..this is a great hack but would be nice to be able to add attachments to it...thank you in advanced!

sv1cec
05-13-2005, 08:36 AM
Although I do not understand why the template is so much different than quick reply. Oh well, easy fix. Thanks, nice idea.