Jump to content

[Solved] problem with creating a url with tags in smartblog


Recommended Posts

  • 2 years later...

I'm using version 2.0.1 and this still hasn't been fixed.

I found the problem and here's the fix.

On the following file: modules/smartblog/smartblog.php

There should be a line where the module "searches" the URL with a regex. On my version, it's on the line 274.

'tag' =>   array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'tag'),

Just add a space:

'tag' =>   array('regexp' => '[_a-zA-Z0-9-\pL ]*', 'param' => 'tag'),

And it worked for me.

 

Marking this topic as solved would help someone find this in the future!

Link to comment
Share on other sites

  • BartekHC changed the title to [Solved] problem with creating a url with tags in smartblog

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...