vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Display option for tachy goes to coventry (https://vborg.vbsupport.ru/showthread.php?t=68471)

firerock 08-18-2004 11:18 AM

Display option for tachy goes to coventry
 
I tried this out on a troublesome poster yesterday.

A normal poster sees no message at all when they post, as if they had never posted at all.

A forum moderator sees "The administrator has decided <unsername> should be quiet for a while"

As do the admins.

Is there anyway of changing it so that only the admins see that message, and the forum moderators see what normal posters see?

I checked through the group options for forum moderators but couldn't see anything to do with it.

It looks like all moderators get to see the message, I only the admins to see it.

thanks.

kall 08-18-2004 11:24 AM

Try Erwin's Warning System, Automatic Ban, Make Posts Invisible, Edit Signature/ Avatar/ Picture hack.

It may be a longer way round than another method, but I think that's what you want. I seem to recall it being able to be set for mods to not see the posts..

firerock 08-18-2004 11:38 AM

ok thanks I'll take a look when I get home :) Give me something to do instead of watching some dumb friendly.

firerock 08-18-2004 08:56 PM

could anyone say whether I have done this right or nor please :)

In the includes/function_showthread.php
part of the function construct_postbit

this is what it does currently
Code:

        // hide users in Coventry from non-staff members
        if ($tachyuser = in_coventry($post['userid']) AND !can_moderate($thread['forumid']))
        {
                return;
        }

change to

Code:

        // hide users in Coventry from non-staff members
        if ($tachyuser = in_coventry($post['userid']) AND !$permissions['adminpermissions'])
        {
                return;
        }

Basically trying to only show tachy messages if you are an admin, rather than anyone who can moderate. ???

firerock 08-20-2004 01:13 PM

I suppose what I'm askign here is it sufficient to say this

!$permissions['adminpermissions']

To see if the person is admin level or not.
As I only want Admin people to see it not normal moderators.


All times are GMT. The time now is 08:15 AM.

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.00952 seconds
  • Memory Usage 1,716KB
  • 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_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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