PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   How Do I? - vBulletin 3.0.X (http://www.photopost.com/forum/how-do-i-vbulletin-3-0-x/)
-   -   image owner conditional? (http://www.photopost.com/forum/how-do-i-vbulletin-3-0-x/117952-image-owner-conditional.html)

imported_rrr March 28th, 2005 06:56 PM

image owner conditional?
 
I'm looking for the conditional that identifies the person browsing the showimage page as the owner of that image.

I want to use this to change the if statement so that only the owner of the image sees the image linking information (bbcode, url to image, etc) instead of just all registered users.

Brian March 29th, 2005 08:08 AM

Re: image owner conditional?
 
<if condition="$image['userid'] == $bbuserinfo['userid']">

imported_rrr March 29th, 2005 10:53 AM

Re: image owner conditional?
 
What does the $bbuserinfo['userid'] part do?

KW802 March 29th, 2005 10:56 AM

Re: image owner conditional?
 
Quote:

Originally Posted by rrr
What does the $bbuserinfo['userid'] part do?

That's the logged in visitor user ID number. If a guest is viewing then it's blank.

imported_rrr March 29th, 2005 10:57 AM

Re: image owner conditional?
 
Quote:

Originally Posted by KW802
That's the logged in visitor user ID number. If a guest is viewing then it's blank.

Great, thanks!

imported_rrr March 29th, 2005 11:21 AM

Re: image owner conditional?
 
Wow, conditionals are cool!

That works perfectly. Now I have it set so only the owner of the image can see the direct link/bbimg link and image link codes. Very cool.


All times are GMT -5. The time now is 12:28 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97