Changeset 867


Ignore:
Timestamp:
Sep 18, 2005, 11:09:44 PM (19 years ago)
Author:
plg
Message:
  • bug 101 fixed: correction reported from branch 1.4
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog

    r866 r867  
     12005-09-18 Pierrick LE GALL
     2
     3        * bug 101 fixed: correction reported from branch 1.4
     4
    152005-09-17 Pierrick LE GALL
    26
  • trunk/include/category_calendar.inc.php

    r761 r867  
    425425    if ($calendar_category != 0)
    426426    {
    427       $url_link.= ';cat:'.$calendar_category.'|AND';
     427      $url_link.= '--cat:'.$calendar_category.'|AND';
    428428    }
    429429   
  • trunk/include/functions_category.inc.php

    r808 r867  
    394394        }
    395395
    396         $search_tokens = explode('+', $tokens[0]);
     396        $search_tokens = explode('--', $tokens[0]);
    397397        foreach ($search_tokens as $search_token)
    398398        {
  • trunk/search.php

    r862 r867  
    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.