Changeset 2135 for trunk/admin/include


Ignore:
Timestamp:
Oct 12, 2007, 5:27:34 AM (17 years ago)
Author:
rvelices
Message:
  • fix plugin menu link broken with xamp (realpath behaves differently)
  • complete quick search rewriting
    • now we can quote phrases as in google "New York" is not the same as New York
    • user comments not searched anymore (faster)
    • the big full text query does not use joins anymore (faster)
    • related tags not shown on the index page, but now you can see the matching tags and matching categories
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions_plugins.inc.php

    r1900 r2135  
    9696  if (false!==$real_file)
    9797  {
    98     $real_plugin_path = realpath(PHPWG_PLUGINS_PATH);
     98    $real_plugin_path = rtrim(realpath(PHPWG_PLUGINS_PATH), '\\/');
    9999    $file = substr($real_file, strlen($real_plugin_path)+1);
    100100    $file = str_replace('\\', '/', $file);//Windows
Note: See TracChangeset for help on using the changeset viewer.