Changes between Initial Version and Version 1 of Ticket #4413, comment 1
- Timestamp:
- 05/27/2019 05:18:21 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4413, comment 1
initial v1 1 Ultimately caused by WordPress's `paginate_links()` function returning `/page/1/` links, and bbPress doing a very bland attempt at working around this in https://bbpress.trac.wordpress.org/browser/branches/2.5/includes/topics/template.php?marks=409#L405 by only replacing `/page/1/'` with `'`.. but core uses ` "` for some links.1 Ultimately caused by WordPress's `paginate_links()` function returning `/page/1/` links, and bbPress doing a very bland attempt at working around this in https://bbpress.trac.wordpress.org/browser/branches/2.5/includes/topics/template.php?marks=409#L405 by only replacing `/page/1/'` with `'`.. but core uses `/page/1/"` for some links. 2 2 3 3 This is fixed in bbPress 2.6 with bbp_paginate_links() I believe, which we should probably look at moving to instead.