The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Minimum Characters Per Post

2 posters

Go down

Minimum Characters Per Post

Minimum Characters Per Post Left1167%Minimum Characters Per Post Right11 67% 
[ 2 ]
Minimum Characters Per Post Left1133%Minimum Characters Per Post Right11 33% 
[ 1 ]
 
Total Votes : 3
 
 
Poll closed

Minimum Characters Per Post Empty Minimum Characters Per Post

Post by eagle8x April 25th 2011, 9:48 pm

I saw this hackmod from phpbb com. Users must type at least a number of characters before submitting new post.
Code:
    #
    #-----[ OPEN ]-----------------------
    #
    includes/message_parser.php
    #
    #-----[ FIND ]------------------------
    #
          // Check for "empty" message
          if ($mode !== 'sig' && !utf8_clean_string($this->message))
          {
            $this->warn_msg[] = $user->lang['TOO_FEW_CHARS'];
            return $this->warn_msg;
          }
    #
    #-----[ AFTER, ADD ]----------------
    #
          // Check for character limit
          if ($mode !== 'sig' && strlen(utf8_clean_string($this->message)) < 30)
          {
            $this->warn_msg[] = $user->lang['TOO_FEW_CHARS_POST'];
            return $this->warn_msg;
          }
    #
    #-----[ OPEN ]-----------------------
    #
    language/en/posting.php
    #
    #-----[ FIND ]------------------------
    #
      'TOO_FEW_CHARS'            => 'Your message contains too few characters.',
    #
    #-----[ AFTER, ADD ]----------------
    #
      'TOO_FEW_CHARS_POST'      => 'Your message contains too few characters. The message must be at least 30 characters length.',
eagle8x
eagle8x
Forumember

Male Posts : 362
Reputation : 15
Language : Vietnamese

http://diendan.chinhphuc.info

Back to top Go down

Minimum Characters Per Post Empty Re: Minimum Characters Per Post

Post by Sanket April 3rd 2013, 4:16 pm

Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum