vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   first post (https://vborg.vbsupport.ru/showthread.php?t=222073)

Gio~Logist 08-31-2009 04:34 PM

Why not just add a plugin in postbit_display_start to save $post[message] from the first instance, and then use it in the showthread template?

Lynne 08-31-2009 05:10 PM

That won't allow him to use it in the $header. The header is evaled long before you get to eval the postbit_display_start hook.

testbot 09-01-2009 02:02 AM

Quote:

Originally Posted by James Birkett (Post 1877170)
You mean similar to what RaGEZONE has (or had)? where it shows the beginning of a thread in the description of that forum?

Quote:

Originally Posted by Lynne (Post 1877209)
So you are passing both the threadid and styleid in the url? If so, you need to clean them prior to using them. example:
PHP Code:

$vbulletin->input->clean_array_gpc('r', array(
    
'threadid'   => TYPE_UINT,
    
'styleid'    => TYPE_UINT,
)); 

Then you can use $vbulletin->GPC['threadid'] or assign another variable to that value. example:

PHP Code:

$thread_id_inj $vbulletin->GPC['threadid']; 

Then, use query_first instead of query_readsince you are only expecting one result. Then you don't have to do a fetch_array (which you didn't do which is why it isn't working).

And don't echo. Assign the result to a variable and then insert the variable into the template where you want it.

You may have issues just using the pagetext as is (I can't remember). Perhaps use stripslashes or similar after you get it from the database.

i was only doing the styleid while testing it in our dev template so our users wouldn't receive any errors while i screwed around. :)

the echo thing was just to see some quick output before putting it in a variable for real testing. i think i was staring at the screen too when i posted that too so that didn't help. lol

anyway, thanks to your help, i finally got it done. it went from a quick query to adding a bunch of little things to make it work good. like limiting it to 30 words, removing line breaks, quotes and all that other stuff.

i'll test this for a bit to make sure it's working well and then i'll post it so if someone else wants to do the same they can.

thanks again!


All times are GMT. The time now is 09:09 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.00930 seconds
  • Memory Usage 1,729KB
  • 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
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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