vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Stop to post long quotes (https://vborg.vbsupport.ru/showthread.php?t=30444)

GenSec 10-14-2001 10:00 PM

A small addition to prevent members to post long messages wich have no new information, but just long quotes and "Cool!" at the end.

Database Changes:
Code:

INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,'8','Maximum Characters per quote','quotemaxchars','250','The maximum number of characters that you want to allow per quote. Set this to 0 to disable it','','8')
Open newreply.php
Find
Code:

$pagetext=htmlspecialchars($postinfo[pagetext]);
Replace with
Code:

    $pagetext=$postinfo[pagetext];
    $getquote=$DB_site->query_first("SELECT value  FROM setting WHERE varname='quotemaxchars'");
    $quotemaxchars=$getquote[value];
    if (strlen($pagetext) > $quotemaxchars and $quotemaxchars!=0) {
          $pagetext = substr($pagetext,0,$quotemaxchars);
          $pagetext .= "...";
        }

    $pagetext=bbcodeparse($pagetext,0,1);

Then use admin CP to set the maximum size of the quote

cyrus 10-23-2001 01:31 PM

nice one

thatl come in handy

thanks GenSec

Admin 10-23-2001 01:39 PM

This will just stop from posting long messages, not quotes.

GenSec 10-23-2001 01:53 PM

Quote:

Originally posted by FireFly
This will just stop from posting long messages, not quotes.
Messages which are long because include long quotes
It limits not message but size of quotes in it

Admin 10-23-2001 02:08 PM

Limiting posts length is already standard with vBulletin.
Your hack does the exact same thing.

GenSec 10-23-2001 02:30 PM

Sorry, it doesn't
Limiting posts length is already standard with vBulletin. Right.
If it's limit is 1000 for example and someone post long message with 1000 simbols. Then next replies can look like
"
Quote:

bla bla = 990 simbols
+ Cool!"

It's only repeat previous one! I hate it and limited in addition the size of quote to 10% of the max post size.

Admin 10-23-2001 02:48 PM

You are right.

DarkReaper 10-23-2001 03:35 PM

Ok...now I'm confused :confused:

Admin 10-23-2001 03:43 PM

He's right, I didn't understand it. :)
Sorry GenSec.


All times are GMT. The time now is 10:46 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.01175 seconds
  • Memory Usage 1,725KB
  • 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
  • (3)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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