Hi
I’m using {exp:channel:categories} to create a category meny for my blog.
The code is fairly simple:
{exp:channel:categories channel="patricks_blogg" backspace="7" style="linear"}
<li><a href="http://{path=patricks_blogg}">{category_name}</a></li>
{/exp:channel:categories}Before the upgrade the code generated an URL like “http://www.hvid.nu/patricks_blogg/category/category_name”
After the upgrade the generated url points to the root like “http://www.hvid.nu/category/category_name”
which obviously doesn’t work.
On the blogroll page itself I use another way of addressing this, within the exp:channel:entries-statement
{categories}
<a href="http://{path=patricks_blogg}">{category_name}, </a>
{/categories}Which generates a perfect URL like above.
Bug, or something did wrong?