As designed Permalinks are not permanent

This has been discussed before and it was a conscious decision: the link is more useful for the average user in the vast majority of cases (given that it includes thread information), so we decided to use that. (Pre-beta 1 of 1.0 it used posts/.) You are free to change it in a template obviously.
 
You are free to change it in a template obviously.
Examples?
I change in template "post" one line. Old:
Code:
<a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="item muted postNumber hashPermalink OverlayTrigger" data-href="{xen:link posts/permalink, $post}">#{xen:calc '{$post.position} + 1'}</a>
New:
Code:
<a href="{xen:link posts, $post}" title="{xen:phrase permalink}" class="item muted postNumber hashPermalink OverlayTrigger" data-href="{xen:link posts/permalink, $post}">#{xen:calc '{$post.position} + 1'}</a>
This is correct?
 
Top Bottom