Changeset 773 for trunk/search.php


Ignore:
Timestamp:
Apr 26, 2005, 1:34:38 PM (19 years ago)
Author:
gweltas
Message:

Bug 0000101: problem with IE search on keywords
The ";" character is not allowed in a IE url. It has been replaced by a "+" character.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/search.php

    r762 r773  
    115115      array_push($tokens, $token);
    116116    }
    117     $search_string.= implode(';', $tokens);
     117    $search_string.= implode('+', $tokens);
    118118    if (count($tokens) > 1)
    119119    {
Note: See TracChangeset for help on using the changeset viewer.