Quote:
Originally Posted by Lynne
Why not look at the queries on the search page? They take user permissions into account.
|
Good idea
I found this :
PHP Code:
if($vbulletin->userinfo['forumpermissions']["$forumid"] & $vbulletin->bf_ugp_forumpermissions['canview'])
The existing permissions are :
Code:
[bf_ugp_forumpermissions] => Array
(
[canview] => 1
[canviewothers] => 2
[cansearch] => 4
[canemail] => 8
[canpostnew] => 16
[canreplyown] => 32
[canreplyothers] => 64
[caneditpost] => 128
[candeletepost] => 256
[candeletethread] => 512
[canopenclose] => 1024
[canmove] => 2048
[cangetattachment] => 4096
[canpostattachment] => 8192
[canpostpoll] => 16384
[canvote] => 32768
[canthreadrate] => 65536
[followforummoderation] => 131072
[canseedelnotice] => 262144
[canviewthreads] => 524288
[cantagown] => 1048576
[cantagothers] => 2097152
[candeletetagown] => 4194304
[canseethumbnails] => 8388608
)
Do you know where are defined this values?