Uploaded image for project: 'phpBB'
  1. phpBB
  2. PHPBB-255

Globalized Flood Control

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • None
    • 3.0.x
    • Search
    • None
    • PHP Environment:
      Database:

      When searching there is a flood control in place, However this is globalized via $config and will effect other users overall.

      Search.php

      // Check last search time ... if applicable
      if ($config['search_interval'])
      {
      	if ($config['last_search_time'] > time() - $config['search_interval'])
      	{
      		trigger_error($user->lang['NO_SEARCH_TIME']);
      	}
      }

      This needs to be session based like the fix that was applied to phpBB 2.0.X CVS (.20)

            naderman Nils Adermann
            shadycrazy shadycrazy
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: