SneakyDave
Well-known member
This is really in relation to an old bug report. I've come to find out that I have the same problem.
Something doesn't seem quite right with this.
As the OP states in that bug report, if rewrites (full friendly URL's) are NOT enabled, the "find_new_posts" template code uses this to display a link to get the "recent posts".
This results in a query string of:
But that link doesn't display "recent posts", it just displays the "new posts", ignoring the "recent" tag.
I think it should be producing this query string, which really isn't correct syntax, and ends up routing me to the forum index
So I guess I'm curious as to what the query string should look like for recent posts, or if maybe there is a some routing messed up here?
Something doesn't seem quite right with this.
As the OP states in that bug report, if rewrites (full friendly URL's) are NOT enabled, the "find_new_posts" template code uses this to display a link to get the "recent posts".
Code:
<a href="{xen:link find-new/posts, '', 'recent=1'}">{xen:phrase recent_posts}</a>
This results in a query string of:
Code:
http://blahblah.com/index.php?find-new/posts&recent=1
But that link doesn't display "recent posts", it just displays the "new posts", ignoring the "recent" tag.
I think it should be producing this query string, which really isn't correct syntax, and ends up routing me to the forum index
Code:
http://blahblah.com/index.php?find-new/posts?recent=1
So I guess I'm curious as to what the query string should look like for recent posts, or if maybe there is a some routing messed up here?