'' in search/tag url with new version?

Hi,

i updated to 1.4.3.2 and i saw that the tag
urls were changed from

/page/search/tags/Clouds

to

/page/search/tags/%27Clouds%27

Is there a way to switch back to the old urls?
I have a lot of links coming to my tag pages with the old url-structure.

Thanks for your help!

Comments

  • acrylian Administrator, Developer
    This is a search option. If you have tags of several words they need to be enclosed in quotes (Which is what you see above).
  • The old URLs should still work, this is happening only on new URLs. You can also try switching to the PDO MySQL database handler. The quotes are caused by using the db_Quote function. PDO MySQL seems to be less "conservative".
  • Thanks for your help. Actually, all words are enclosed in quotes on my installation, also single words.
  • This is caused by a poor choice of coding in the tag handling function. It uses the `db_quote()` function to present the tag where it should have used the `search_quote()` function (since tags are basically search elements.)

    I believe the quickest solution would be for you to select the PDO_MySQL database as I believe that its quote handling does not place quotes around Alpha Numeric strings.

    Or you can install the nightly build after tonight where the proper function has been inserted.
  • ok, thanks ill wait for the nightly release :)
Sign In or Register to comment.