vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   How do I exempt admin (https://vborg.vbsupport.ru/showthread.php?t=34116)

Remi 01-14-2002 06:16 PM

Hi every body

I want to exempt administrator from censor word and from the search Floodcheck.

Is there a way of doing this

They talled me at vbulletin.com that the right place to aske is here

Thanks in advance

Xenon 01-14-2002 07:13 PM

in editpost.php and newreply.php search

$title=censortext($title);
$message=censortext($message);

and change it so

PHP Code:

if($bbuserinfo[usergroupid]!=6) {
  
$title=censortext($title);
  
$message=censortext($message);


in newthread.php search

$subject=censortext($subject);
$message=censortext($message);

an change it to
PHP Code:

if($bbuserinfo[usergroupid]!=6) {
  
$subject=censortext($subject);
  
$message=censortext($message);


this should work i think

Remi 01-15-2002 12:30 AM

Thank you very much, It make sence but it is not working :)

Do you recomend any thing else

Xenon 01-15-2002 11:09 AM

yeah you're right *bounceonkeyboard*

additionally open your functions.php

and find

return censortext($bbcode);

and change it to

return $bbcode;

now it should work, and everything you post as admin doesnt be censored.

be informed, that if you change your censored words, with this hack it doesen't change old posts. to to that, you have to hack a little more ^^

Remi 01-15-2002 03:39 PM

Thank you very much :)

https://vborg.vbsupport.ru/external/2011/01/19.gif

chrisvonc 04-15-2004 01:40 PM

PHP Code:

if($bbuserinfo[usergroupid]!=6) { 

How would I modify this to add a 2nd group into this code? I would like to add the moderator group.

Thanks!

Boofo 04-15-2004 01:42 PM

PHP Code:

if($bbuserinfo['usergroupid']!=AND $bbuserinfo['usergroupid']!=5) { 

or you could:


PHP Code:

if(!in_array($bbuserinfo['usergroupid'], array(5,6,7))) { 


chrisvonc 04-15-2004 01:48 PM

Wow Boofo... Super fast with that one! Kudos! :)

Thank you I will give it a go tonight.

Chris

Boofo 04-15-2004 01:49 PM

Check my post above. I gave you another option. ;)

chrisvonc 04-15-2004 10:24 PM

Hi again Boofo.. I tried the first code you posted and that did the trick.

Thank you again!

Chris


All times are GMT. The time now is 01:38 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.01262 seconds
  • Memory Usage 1,735KB
  • 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
  • (5)bbcode_php_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
  • (10)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