Results 1 to 2 of 2

Thread: at least 3 characters?

  1. #1
    Join Date
    Oct 2001
    Posts
    94

    Default at least 3 characters?

    "Please enter the keyword at least 3 characters"

    Where do I change this to 2 characters.

    Thank you
    Ike

  2. #2
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default

    You should edit search.php line 29

    PHP Code:
      if(empty($keyword) || strlen($keyword)<3) { 
    to:

    PHP Code:
      if(empty($keyword) || strlen($keyword)<2) { 

Similar Threads

  1. Importing Link Database Errors
    By Jon in forum v5.x
    Replies: 3
    Last Post: 03-19-2002, 08:52 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •