vb.org Archive

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

Daggerzz 08-18-2008 07:03 PM

Conditionals
 
Im trying to add a button to the thread view postbit controlls next to the edit and quote buttons. Adding the button is easy but Im trying to make it so only the original poster can see the button If i put in the conditional

<if condition="$vbulletin->userinfo['userid'] == $threadinfo['postuserid']">

everyone can see it

if i put in the conditional

<if condition="$threadinfo['postuserid'] == $bbuserinfo['userid']">

no one can see it
shouldnt both of these return the same result?

Dismounted 08-19-2008 08:55 AM

Code:

<if condition="$thread['postuserid'] == $bbuserinfo['userid']">
The reason your first one will show to everyone is because $vbulletin->userinfo doesn't exist yet (I don't think), so it will match null, empty, 0, or false, unless you have used the identical operator. The second variable, $threadinfo, also does not exist.

In the second example, $bbuserinfo does exist, and will not match null, empty, 0, or false.

Daggerzz 08-19-2008 12:29 PM

Ok after messing with that for about 6 hours I came to the same conclusion.
So my question is , is there a way to make a button appear in the postbit controls that only the original thread starter can see.

--------------- Added [DATE]1219195384[/DATE] at [TIME]1219195384[/TIME] ---------------

Thanks for the help i figured it out


All times are GMT. The time now is 03:24 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.01034 seconds
  • Memory Usage 1,710KB
  • 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
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete